function EditorBase::submitConfigurationForm

Same name in other branches
  1. 9 core/modules/editor/src/Plugin/EditorBase.php \Drupal\editor\Plugin\EditorBase::submitConfigurationForm()
  2. 10 core/modules/editor/src/Plugin/EditorBase.php \Drupal\editor\Plugin\EditorBase::submitConfigurationForm()
  3. 11.x core/modules/editor/src/Plugin/EditorBase.php \Drupal\editor\Plugin\EditorBase::submitConfigurationForm()

Overrides PluginFormInterface::submitConfigurationForm

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

File

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

Class

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

Namespace

Drupal\editor\Plugin

Code

public function submitConfigurationForm(array &$form, FormStateInterface $form_state) {
    if (method_exists($this, 'settingsFormSubmit')) {
        @trigger_error(get_called_class() . "::settingsFormSubmit is deprecated since version 8.3.x. Rename the implementation 'submitConfigurationForm'. See https://www.drupal.org/node/2819753", E_USER_DEPRECATED);
        if ($form_state instanceof SubformStateInterface) {
            $form_state = $form_state->getCompleteFormState();
        }
        $this->settingsFormSubmit($form, $form_state);
    }
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.