You are here

public function WebformSignature::getInfo in Webform 6.x

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

Class

WebformSignature
Provides a webform element for entering a signature.

Namespace

Drupal\webform\Element

Code

public function getInfo() {
  $class = get_class($this);
  return [
    '#input' => TRUE,
    '#process' => [
      [
        $class,
        'processWebformSignature',
      ],
      [
        $class,
        'processAjaxForm',
      ],
      [
        $class,
        'processGroup',
      ],
    ],
    '#pre_render' => [
      [
        $class,
        'preRenderWebformSignature',
      ],
    ],
    '#theme' => 'input__webform_signature',
    '#theme_wrappers' => [
      'form_element',
    ],
    // Add '#markup' property to add an 'id' attribute to the form element.
    // @see template_preprocess_form_element()
    '#markup' => '',
  ];
}