You are here

public function WebformHelp::getInfo in Webform 6.x

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

Class

WebformHelp
Provides a render element for help (tooltip).

Namespace

Drupal\webform\Element

Code

public function getInfo() {
  return [
    '#help' => '',
    '#help_title' => '',
    '#theme' => 'webform_element_help',
    '#attributes' => [],
  ];
}