xiaowang/kirby/config/fields/select.php

25 lines
393 B
PHP
Raw Normal View History

2021-10-29 18:05:46 +02:00
<?php
return [
2022-08-31 16:08:03 +02:00
'extends' => 'radio',
'props' => [
/**
* Unset inherited props
*/
'columns' => null,
2021-10-29 18:05:46 +02:00
2022-08-31 16:08:03 +02:00
/**
* 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;
},
]
2021-10-29 18:05:46 +02:00
];