You are here

public function Select::getInfo in Drupal 8

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Render/Element/Select.php \Drupal\Core\Render\Element\Select::getInfo()
  2. 10 core/lib/Drupal/Core/Render/Element/Select.php \Drupal\Core\Render\Element\Select::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

core/lib/Drupal/Core/Render/Element/Select.php, line 87

Class

Select
Provides a form element for a drop-down menu or scrolling selection box.

Namespace

Drupal\Core\Render\Element

Code

public function getInfo() {
  $class = get_class($this);
  return [
    '#input' => TRUE,
    '#multiple' => FALSE,
    '#sort_options' => FALSE,
    '#sort_start' => NULL,
    '#process' => [
      [
        $class,
        'processSelect',
      ],
      [
        $class,
        'processAjaxForm',
      ],
    ],
    '#pre_render' => [
      [
        $class,
        'preRenderSelect',
      ],
    ],
    '#theme' => 'select',
    '#theme_wrappers' => [
      'form_element',
    ],
    '#options' => [],
  ];
}