actuel-inactuel/site/plugins/send-button/index.php

17 lines
311 B
PHP
Raw Normal View History

2024-10-16 08:53:53 +02:00
<?php
Kirby::plugin('adrienpayet/send-button', [
'fields' => [
'send-button' => [
'computed' => [
'pageUri' => function () {
return $this->model()->uri();
},
2025-01-28 14:55:10 +01:00
'pageStatus' => function () {
return $this->model()->status();
},
2024-10-16 08:53:53 +02:00
]
]
]
]);