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