actuel-inactuel/site/plugins/your-plugin/index.php

21 lines
376 B
PHP
Raw Normal View History

2025-11-27 14:17:05 +01:00
<?php
Kirby::plugin('getkirby/pluginkit', [
2025-11-28 14:40:57 +01:00
'fields' => [
'demo' => [
'props' => [
'value' => function ($value = null) {
$margins = Yaml::decode($value);
return [
'top' => 0,
'right' => 0,
'bottom' => 0,
'left' => 0,
...$margins
];
}
]
]
2025-11-27 14:17:05 +01:00
],
]);