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
1 2 3 4 5 6 7 8 9 10 11 | 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.