You are here

public function WebformMapping::getInfo in Webform 8.5

Same name and namespace in other branches
  1. 6.x src/Element/WebformMapping.php \Drupal\webform\Element\WebformMapping::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/WebformMapping.php, line 27

Class

WebformMapping
Provides a mapping element.

Namespace

Drupal\webform\Element

Code

public function getInfo() {
  $class = get_class($this);
  return [
    '#input' => TRUE,
    '#process' => [
      [
        $class,
        'processWebformMapping',
      ],
      [
        $class,
        'processAjaxForm',
      ],
    ],
    '#theme_wrappers' => [
      'form_element',
    ],
    '#filter' => TRUE,
    '#required' => FALSE,
    '#source' => [],
    '#source__description_display' => 'description',
    '#destination' => [],
    '#arrow' => '→',
  ];
}