You are here

public function BootstrapDateTime::getInfo in Bootstrap DateTime Picker 2.0.x

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/BootstrapDateTime.php, line 20

Class

BootstrapDateTime
Provides a BootstrapDateTime form element.

Namespace

Drupal\bootstrap_datetime_picker\Element

Code

public function getInfo() {
  $class = get_class($this);
  return [
    '#input' => TRUE,
    '#multiple' => FALSE,
    '#maxlength' => 512,
    '#size' => 25,
    '#process' => [
      [
        $class,
        'processBootstrapDateTime',
      ],
    ],
    '#pre_render' => [
      [
        $class,
        'preRenderBootstrapDateTime',
      ],
    ],
    '#theme_wrappers' => [
      'form_element',
    ],
    '#theme' => 'input__textfield',
  ];
}