You are here

public function WebformEmailMultiple::getInfo in Webform 6.x

Same name and namespace in other branches
  1. 8.5 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\Element

Code

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',
    ],
  ];
}