julienmonnerie/kirby/config/fields/tel.php

28 lines
427 B
PHP
Raw Normal View History

2022-06-17 17:51:59 +02:00
<?php
return [
2022-08-31 15:02:43 +02:00
'extends' => 'text',
'props' => [
/**
* Unset inherited props
*/
'converter' => null,
'counter' => null,
'spellcheck' => null,
2022-06-17 17:51:59 +02:00
2022-08-31 15:02:43 +02:00
/**
* Sets the HTML5 autocomplete attribute
*/
'autocomplete' => function (string $autocomplete = 'tel') {
return $autocomplete;
},
2022-06-17 17:51:59 +02:00
2022-08-31 15:02:43 +02:00
/**
* Changes the phone icon
*/
'icon' => function (string $icon = 'phone') {
return $icon;
}
]
2022-06-17 17:51:59 +02:00
];