actuel-inactuel/site/plugins/send-button/index.php
2025-01-28 14:55:10 +01:00

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();
},
]
]
]
]);