You are here

public function WebformHtmlEditor::getInfo in Webform 8.5

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

Class

WebformHtmlEditor
Provides a webform element for entering HTML using CodeMirror, TextFormat, or custom CKEditor.

Namespace

Drupal\webform\Element

Code

public function getInfo() {
  $class = get_class($this);
  return [
    '#input' => TRUE,
    '#process' => [
      [
        $class,
        'processWebformHtmlEditor',
      ],
      [
        $class,
        'processAjaxForm',
      ],
      [
        $class,
        'processGroup',
      ],
    ],
    '#pre_render' => [
      [
        $class,
        'preRenderGroup',
      ],
    ],
    '#theme_wrappers' => [
      'form_element',
    ],
    '#format' => '',
  ];
}