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