public function WebformVariant::getInfo in Webform 8.5
Same name and namespace in other branches
- 6.x src/Element/WebformVariant.php \Drupal\webform\Element\WebformVariant::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/ WebformVariant.php, line 19
Class
- WebformVariant
- Provides a webform variant element.
Namespace
Drupal\webform\ElementCode
public function getInfo() {
$class = get_class($this);
return [
'#input' => TRUE,
'#variant' => '',
'#process' => [
[
$class,
'processWebformVariant',
],
],
'#pre_render' => [],
'#theme_wrappers' => [
'form_element',
],
];
}