You are here

public function PluginFormInterface::submitConfigurationForm in Drupal 10

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Plugin/PluginFormInterface.php \Drupal\Core\Plugin\PluginFormInterface::submitConfigurationForm()
  2. 9 core/lib/Drupal/Core/Plugin/PluginFormInterface.php \Drupal\Core\Plugin\PluginFormInterface::submitConfigurationForm()

Form submission 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().

17 methods override PluginFormInterface::submitConfigurationForm()
ActionAjaxTest::submitConfigurationForm in core/modules/action/tests/action_form_ajax_test/src/Plugin/Action/ActionAjaxTest.php
Form submission handler.
ComplexTestTypeConfigureForm::submitConfigurationForm in core/modules/workflows/tests/modules/workflow_type_test/src/Form/ComplexTestTypeConfigureForm.php
Form submission handler.
ContentModerationConfigureForm::submitConfigurationForm in core/modules/content_moderation/src/Form/ContentModerationConfigureForm.php
Form submission handler.
EditorBase::submitConfigurationForm in core/modules/editor/src/Plugin/EditorBase.php
Form submission handler.
EmptyBlockForm::submitConfigurationForm in core/modules/block/tests/modules/block_test/src/PluginForm/EmptyBlockForm.php
Form submission handler.

... See full list

File

core/lib/Drupal/Core/Plugin/PluginFormInterface.php, line 67

Class

PluginFormInterface
Provides an interface for an embeddable plugin form.

Namespace

Drupal\Core\Plugin

Code

public function submitConfigurationForm(array &$form, FormStateInterface $form_state);