xiaowang/kirby/config/fields/headline.php

27 lines
460 B
PHP
Raw Normal View History

2021-10-29 18:05:46 +02:00
<?php
return [
2022-08-31 16:08:03 +02:00
'save' => false,
'props' => [
/**
* Unset inherited props
*/
'after' => null,
'autofocus' => null,
'before' => null,
'default' => null,
'disabled' => null,
'icon' => null,
'placeholder' => null,
'required' => null,
'translate' => null,
2021-10-29 18:05:46 +02:00
2022-08-31 16:08:03 +02:00
/**
* If `false`, the prepended number will be hidden
*/
'numbered' => function (bool $numbered = true) {
return $numbered;
}
]
2021-10-29 18:05:46 +02:00
];