public function BootstrapDate::getInfo in Bootstrap Datepicker 8
Returns the element properties for this element.
Return value
array An array of element properties. See \Drupal\Core\Render\ElementInfoManagerInterface::getInfo() for documentation of the standard properties of all elements, and the return value format.
Overrides ElementInterface::getInfo
File
- src/
Element/ BootstrapDate.php, line 22
Class
- BootstrapDate
- Provides a BootstrapDate form element.
Namespace
Drupal\bootstrap_datepicker\ElementCode
public function getInfo() {
$class = get_class($this);
return [
'#input' => TRUE,
'#multiple' => FALSE,
'#maxlength' => 512,
'#process' => [
[
$class,
'processBootstrapDate',
],
],
'#pre_render' => [
[
$class,
'preRenderBootstrapDate',
],
],
'#size' => 25,
'#theme_wrappers' => [
'form_element',
],
'#theme' => 'input__textfield',
];
}