You are here

public function YamlFormHtmlEditor::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 Textarea::getInfo

File

src/Element/YamlFormHtmlEditor.php, line 19

Class

YamlFormHtmlEditor
Provides a form element for entering HTML using CKEditor or CodeMirror.

Namespace

Drupal\yamlform\Element

Code

public function getInfo() {
  $class = get_class($this);
  $info = parent::getInfo();
  $info['#pre_render'][] = [
    $class,
    'preRenderYamlFormHtmlEditor',
  ];
  $info['#element_validate'][] = [
    $class,
    'validateYamlFormHtmlEditor',
  ];
  return $info;
}