You are here

public function WebformElementAttributes::getInfo in Webform 6.x

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

Class

WebformElementAttributes
Provides a webform element for element attributes.

Namespace

Drupal\webform\Element

Code

public function getInfo() {
  $class = get_class($this);
  return [
    '#input' => TRUE,
    '#process' => [
      [
        $class,
        'processWebformElementAttributes',
      ],
    ],
    '#pre_render' => [
      [
        $class,
        'preRenderWebformElementAttributes',
      ],
    ],
    '#theme_wrappers' => [
      'container',
    ],
    '#classes' => '',
  ];
}