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 455
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;
}
Please login to continue.