You are here

public function WebformTime::getInfo in Webform 8.5

Same name and namespace in other branches
  1. 6.x src/Element/WebformTime.php \Drupal\webform\Element\WebformTime::getInfo()

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/WebformTime.php, line 28

Class

WebformTime
Provides a webform element for time selection.

Namespace

Drupal\webform\Element

Code

public function getInfo() {
  $class = get_class($this);
  return [
    '#input' => TRUE,
    '#theme' => 'input__webform_time',
    '#process' => [
      [
        $class,
        'processWebformTime',
      ],
    ],
    '#pre_render' => [
      [
        $class,
        'preRenderWebformTime',
      ],
    ],
    '#theme_wrappers' => [
      'form_element',
    ],
    '#timepicker' => FALSE,
    '#time_format' => 'H:i',
    '#size' => 12,
    '#maxlength' => 12,
  ];
}