public function FormSubmitterInterface::executeSubmitHandlers in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/lib/Drupal/Core/Form/FormSubmitterInterface.php \Drupal\Core\Form\FormSubmitterInterface::executeSubmitHandlers()
Executes custom submission handlers for a given form.
Button-specific handlers are checked first. If none exist, the function falls back to form-level handlers.
Parameters
$form: An associative array containing the structure of the form.
$form_state: The current state of the form. If the user submitted the form by clicking a button with custom handler functions defined, those handlers will be stored here.
2 methods override FormSubmitterInterface::executeSubmitHandlers()
- FormBuilder::executeSubmitHandlers in core/
lib/ Drupal/ Core/ Form/ FormBuilder.php - Executes custom submission handlers for a given form.
- FormSubmitter::executeSubmitHandlers in core/
lib/ Drupal/ Core/ Form/ FormSubmitter.php - Executes custom submission handlers for a given form.
File
- core/
lib/ Drupal/ Core/ Form/ FormSubmitterInterface.php, line 42 - Contains \Drupal\Core\Form\FormSubmitterInterface.
Class
- FormSubmitterInterface
- Provides an interface for processing form submissions.
Namespace
Drupal\Core\FormCode
public function executeSubmitHandlers(&$form, FormStateInterface &$form_state);