You are here

public function WebformNodeElement::getInfo in Webform Node Element 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/WebformNodeElement.php, line 18

Class

WebformNodeElement
Provides a render element to display a node.

Namespace

Drupal\webform_node_element\Element

Code

public function getInfo() {
  $class = get_class($this);
  return [
    '#pre_render' => [
      [
        $class,
        "preRenderWebformNodeElement",
      ],
    ],
    '#webform_node_element_nid' => NULL,
  ];
}