Files
lichterei-web/kirby/config/fields/multiselect.php
Bastian Allgeier 6e074142f1 Upgrade to 3.1.0
2019-03-19 11:07:14 +01:00

33 lines
701 B
PHP
Executable File

<?php
return [
'extends' => 'tags',
'props' => [
/**
* Unset inherited props
*/
'accept' => null,
/**
* 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, selected entries will be sorted
* according to their position in the dropdown
*/
'sort' => function (bool $sort = false) {
return $sort;
},
]
];