You are here

public function YamlFormElementOptions::getInfo in YAML Form 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/YamlFormElementOptions.php, line 26

Class

YamlFormElementOptions
Provides a form element for managing form element options.

Namespace

Drupal\yamlform\Element

Code

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