public function WebformTelephone::getInfo in Webform 6.x
Same name and namespace in other branches
- 8.5 src/Element/WebformTelephone.php \Drupal\webform\Element\WebformTelephone::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/ WebformTelephone.php, line 17
Class
- WebformTelephone
- Provides a webform element for a telephone element.
Namespace
Drupal\webform\ElementCode
public function getInfo() {
$info = parent::getInfo() + [
'#theme' => 'webform_composite_telephone',
];
unset($info['#title_display']);
return $info;
}