W3cubDocs

/Drupal 8

public function FormState::setFormState

public FormState::setFormState(array $form_state_additions)

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/FormState.php, line 452

Class

FormState
Stores information about the state of a form.

Namespace

Drupal\Core\Form

Code

public function setFormState(array $form_state_additions) {
  foreach ($form_state_additions as $key => $value) {
    if (property_exists($this, $key)) {
      $this->{$key} = $value;
    }
    else {
      $this->set($key, $value);
    }
  }
  return $this;
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Form!FormState.php/function/FormState::setFormState/8.1.x