You are here

public function EditorBase::validateConfigurationForm in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/editor/src/Plugin/EditorBase.php \Drupal\editor\Plugin\EditorBase::validateConfigurationForm()
  2. 10 core/modules/editor/src/Plugin/EditorBase.php \Drupal\editor\Plugin\EditorBase::validateConfigurationForm()

Form validation handler.

Parameters

array $form: An associative array containing the structure of the plugin form as built by static::buildConfigurationForm().

\Drupal\Core\Form\FormStateInterface $form_state: The current state of the form. Calling code should pass on a subform state created through \Drupal\Core\Form\SubformState::createForSubform().

Overrides PluginFormInterface::validateConfigurationForm

1 method overrides EditorBase::validateConfigurationForm()
CKEditor::validateConfigurationForm in core/modules/ckeditor/src/Plugin/Editor/CKEditor.php
Form validation handler.

File

core/modules/editor/src/Plugin/EditorBase.php, line 41

Class

EditorBase
Defines a base class from which other modules providing editors may extend.

Namespace

Drupal\editor\Plugin

Code

public function validateConfigurationForm(array &$form, FormStateInterface $form_state) {
}