You are here

public function PluginConfigFormBase::submitFormSuccess in Purge 8.3

Form submission handler only called when there are no validation errors.

Parameters

array $form: An associative array containing the structure of the form.

\Drupal\Core\Form\FormStateInterface $form_state: The current state of the form.

1 call to PluginConfigFormBase::submitFormSuccess()
PluginConfigFormBase::submitForm in modules/purge_ui/src/Form/PluginConfigFormBase.php
Form submission handler.
4 methods override PluginConfigFormBase::submitFormSuccess()
ConfigurationForm::submitFormSuccess in modules/purge_queuer_coretags/src/Form/ConfigurationForm.php
Form submission handler only called when there are no validation errors.
ProcessorConfigForm::submitFormSuccess in tests/modules/purge_processor_test/src/Form/ProcessorConfigForm.php
Form submission handler only called when there are no validation errors.
PurgerConfigForm::submitFormSuccess in tests/modules/purge_purger_test/src/Form/PurgerConfigForm.php
Form submission handler only called when there are no validation errors.
QueuerConfigForm::submitFormSuccess in tests/modules/purge_queuer_test/src/Form/QueuerConfigForm.php
Form submission handler only called when there are no validation errors.

File

modules/purge_ui/src/Form/PluginConfigFormBase.php, line 118

Class

PluginConfigFormBase
Provides a base class for (dialog-driven) plugin configuration forms.

Namespace

Drupal\purge_ui\Form

Code

public function submitFormSuccess(array &$form, FormStateInterface $form_state) {
  throw new \LogicException("::submitFormSuccess() not implemented!");
}