20 lines
376 B
PHP
20 lines
376 B
PHP
<?php
|
|
|
|
Kirby::plugin('getkirby/pluginkit', [
|
|
'fields' => [
|
|
'demo' => [
|
|
'props' => [
|
|
'value' => function ($value = null) {
|
|
$margins = Yaml::decode($value);
|
|
return [
|
|
'top' => 0,
|
|
'right' => 0,
|
|
'bottom' => 0,
|
|
'left' => 0,
|
|
...$margins
|
|
];
|
|
}
|
|
]
|
|
]
|
|
],
|
|
]);
|