16 lines
311 B
PHP
Executable file
16 lines
311 B
PHP
Executable file
<?php
|
|
|
|
Kirby::plugin('adrienpayet/send-button', [
|
|
'fields' => [
|
|
'send-button' => [
|
|
'computed' => [
|
|
'pageUri' => function () {
|
|
return $this->model()->uri();
|
|
},
|
|
'pageStatus' => function () {
|
|
return $this->model()->status();
|
|
},
|
|
]
|
|
]
|
|
]
|
|
]);
|