xiaowang/kirby/config/fields/radio.php

30 lines
535 B
PHP
Raw Normal View History

2021-10-29 18:05:46 +02:00
<?php
return [
2022-08-31 16:08:03 +02:00
'mixins' => ['options'],
'props' => [
/**
* Unset inherited props
*/
'after' => null,
'before' => null,
'icon' => null,
'placeholder' => null,
2021-10-29 18:05:46 +02:00
2022-08-31 16:08:03 +02:00
/**
* Arranges the radio buttons in the given number of columns
*/
'columns' => function (int $columns = 1) {
return $columns;
},
],
'computed' => [
'default' => function () {
return $this->sanitizeOption($this->default);
},
'value' => function () {
return $this->sanitizeOption($this->value) ?? '';
}
]
2021-10-29 18:05:46 +02:00
];