Files
lichterei-web/kirby/config/fields/multiselect.php
Bastian Allgeier 01277f79f2 first version
2019-01-13 23:17:34 +01:00

26 lines
580 B
PHP
Executable File

<?php
return [
'extends' => 'tags',
'props' => [
/**
* Custom icon to replace the arrow down.
*/
'icon' => function (string $icon = null) {
return $icon;
},
/**
* Enable/disable the search in the dropdown
*/
'search' => function (bool $search = true) {
return $search;
},
/**
* If true, entries will be sorted alphabetically on selection
*/
'sort' => function (bool $sort = false) {
return $sort;
},
]
];