You are here

public function FormStateDecoratorBase::setFormState in Drupal 8

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

Sets the value of the form state.

Parameters

array $form_state_additions: An array of values to add to the form state.

Return value

$this

Overrides FormStateInterface::setFormState

File

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

Class

FormStateDecoratorBase
Decorates another form state.

Namespace

Drupal\Core\Form

Code

public function setFormState(array $form_state_additions) {
  $this->decoratedFormState
    ->setFormState($form_state_additions);
  return $this;
}