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