Files
lichterei-web/kirby/config/fields/select.php
Bastian Allgeier 1ad1eaf387 Upgrade to 3.7.1
2022-07-12 13:33:21 +02:00

25 lines
393 B
PHP
Executable File

<?php
return [
'extends' => 'radio',
'props' => [
/**
* Unset inherited props
*/
'columns' => null,
/**
* Custom icon to replace the arrow down.
*/
'icon' => function (string $icon = null) {
return $icon;
},
/**
* Custom placeholder string for empty option.
*/
'placeholder' => function (string $placeholder = '—') {
return $placeholder;
},
]
];