public function WebformHorizontalRule::getInfo in Webform 6.x
Same name and namespace in other branches
- 8.5 src/Element/WebformHorizontalRule.php \Drupal\webform\Element\WebformHorizontalRule::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/ WebformHorizontalRule.php, line 17
Class
- WebformHorizontalRule
- Provides a render element for horizontal rule.
Namespace
Drupal\webform\ElementCode
public function getInfo() {
return [
'#theme' => 'webform_horizontal_rule',
];
}