You are here

public function WebformEmailConfirm::getInfo in Webform 6.x

Same name and namespace in other branches
  1. 8.5 src/Element/WebformEmailConfirm.php \Drupal\webform\Element\WebformEmailConfirm::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/WebformEmailConfirm.php, line 25

Class

WebformEmailConfirm
Provides a webform element requiring users to double-element and confirm an email address.

Namespace

Drupal\webform\Element

Code

public function getInfo() {
  $class = get_class($this);
  return [
    '#input' => TRUE,
    '#size' => 60,
    '#process' => [
      [
        $class,
        'processWebformEmailConfirm',
      ],
    ],
    '#pre_render' => [
      [
        $class,
        'preRenderWebformCompositeFormElement',
      ],
    ],
    '#required' => FALSE,
  ];
}