You are here

public function PluginFormInterface::submitConfigurationForm in Drupal 8

Same name and namespace in other branches
  1. 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().

32 methods override PluginFormInterface::submitConfigurationForm()
ActionAjaxTest::submitConfigurationForm in core/modules/action/tests/action_form_ajax_test/src/Plugin/Action/ActionAjaxTest.php
Form submission handler.
AssignOwnerNode::submitConfigurationForm in core/modules/node/src/Plugin/Action/AssignOwnerNode.php
Form submission handler.
ChangeUserRoleBase::submitConfigurationForm in core/modules/user/src/Plugin/Action/ChangeUserRoleBase.php
Form submission handler.
ComplexTestTypeConfigureForm::submitConfigurationForm in core/modules/workflows/tests/modules/workflow_type_test/src/Form/ComplexTestTypeConfigureForm.php
Form submission handler.
ConditionPluginBase::submitConfigurationForm in core/lib/Drupal/Core/Condition/ConditionPluginBase.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);