You are here

public function YamlFormEmailConfirm::getInfo in YAML Form 8

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/YamlFormEmailConfirm.php, line 25

Class

YamlFormEmailConfirm
Provides a form element requiring users to double-element and confirm an email address.

Namespace

Drupal\yamlform\Element

Code

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