You are here

public function WebformElementOptions::getInfo in Webform 6.x

Same name and namespace in other branches
  1. 8.5 src/Element/WebformElementOptions.php \Drupal\webform\Element\WebformElementOptions::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/WebformElementOptions.php, line 31

Class

WebformElementOptions
Provides a form element for managing webform element options.

Namespace

Drupal\webform\Element

Code

public function getInfo() {
  $class = get_class($this);
  return [
    '#input' => TRUE,
    '#yaml' => FALSE,
    '#likert' => FALSE,
    '#process' => [
      [
        $class,
        'processWebformElementOptions',
      ],
      [
        $class,
        'processAjaxForm',
      ],
    ],
    '#theme_wrappers' => [
      'form_element',
    ],
    '#custom__type' => 'webform_options',
    '#options_description' => FALSE,
  ];
}