xiaowang/kirby/config/fields/range.php

25 lines
387 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' => 'number',
'props' => [
/**
* Unset inherited props
*/
'placeholder' => null,
2021-10-29 18:05:46 +02:00
2022-08-31 16:08:03 +02:00
/**
* The maximum value on the slider
*/
'max' => function (float $max = 100) {
return $max;
},
/**
* Enables/disables the tooltip and set the before and after values
*/
'tooltip' => function ($tooltip = true) {
return $tooltip;
},
]
2021-10-29 18:05:46 +02:00
];