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