public function WebformEmailMultiple::getInfo in Webform 8.5
Same name and namespace in other branches
- 6.x src/Element/WebformEmailMultiple.php \Drupal\webform\Element\WebformEmailMultiple::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/ WebformEmailMultiple.php, line 19
Class
- WebformEmailMultiple
- Provides a webform element for entering multiple comma delimited email addresses.
Namespace
Drupal\webform\ElementCode
public function getInfo() {
$class = get_class($this);
return [
'#input' => TRUE,
'#description' => $this
->t('Multiple email addresses may be separated by commas.'),
'#size' => 60,
'#cardinality' => NULL,
'#allow_tokens' => FALSE,
'#process' => [
[
$class,
'processWebformEmailConfirm',
],
[
$class,
'processAutocomplete',
],
[
$class,
'processAjaxForm',
],
[
$class,
'processPattern',
],
],
'#pre_render' => [
[
$class,
'preRenderWebformEmailMultiple',
],
],
'#theme' => 'input__webform_email_multiple',
'#theme_wrappers' => [
'form_element',
],
];
}