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