You are here

public function Webform::getInfo in Webform 8.5

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

Class

Webform
Provides a render element to display a webform.

Namespace

Drupal\webform\Element

Code

public function getInfo() {
  $class = get_class($this);
  return [
    '#pre_render' => [
      [
        $class,
        'preRenderWebformElement',
      ],
    ],
    '#webform' => NULL,
    '#default_data' => [],
    '#action' => NULL,
    '#sid' => NULL,
    '#information' => NULL,
  ];
}