public function WebformHeight::getInfo in Webform 6.x
Same name and namespace in other branches
- 8.5 src/Element/WebformHeight.php \Drupal\webform\Element\WebformHeight::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/ WebformHeight.php, line 36
Class
- WebformHeight
- Provides a webform height element.
Namespace
Drupal\webform\ElementCode
public function getInfo() {
$class = get_class($this);
return [
'#input' => TRUE,
'#process' => [
[
$class,
'processWebformHeight',
],
],
'#pre_render' => [
[
$class,
'preRenderWebformCompositeFormElement',
],
],
'#required' => FALSE,
'#height_type' => 'number',
'#height_format' => '',
'#feet__min' => 0,
'#feet__max' => 8,
'#inches__step' => 1,
];
}