public function WebformExcludedElements::getInfo in Webform 6.x
Same name and namespace in other branches
- 8.5 src/Element/WebformExcludedElements.php \Drupal\webform\Element\WebformExcludedElements::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 WebformExcludedBase::getInfo
File
- src/
Element/ WebformExcludedElements.php, line 20
Class
- WebformExcludedElements
- Provides a webform element for webform excluded elements.
Namespace
Drupal\webform\ElementCode
public function getInfo() {
return parent::getInfo() + [
'#exclude_markup' => TRUE,
];
}