You are here

public function FormStateDecoratorBase::setSubmitHandlers in Drupal 8

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Form/FormStateDecoratorBase.php \Drupal\Core\Form\FormStateDecoratorBase::setSubmitHandlers()
  2. 10 core/lib/Drupal/Core/Form/FormStateDecoratorBase.php \Drupal\Core\Form\FormStateDecoratorBase::setSubmitHandlers()

Sets the submit handlers.

Parameters

array $submit_handlers: An array of submit handlers.

Return value

$this

Overrides FormStateInterface::setSubmitHandlers

File

core/lib/Drupal/Core/Form/FormStateDecoratorBase.php, line 299

Class

FormStateDecoratorBase
Decorates another form state.

Namespace

Drupal\Core\Form

Code

public function setSubmitHandlers(array $submit_handlers) {
  $this->decoratedFormState
    ->setSubmitHandlers($submit_handlers);
  return $this;
}