public FormStateValuesTrait::setValue($key, $value)
Implements \Drupal\Core\Form\FormStateInterface::setValue()
File
- core/lib/Drupal/Core/Form/FormStateValuesTrait.php, line 45
Class
- FormStateValuesTrait
- Provides methods to manage form state values.
Namespace
Drupal\Core\Form
Code
1 2 3 4 | public function setValue( $key , $value ) { NestedArray::setValue( $this ->getValues(), ( array ) $key , $value , TRUE); return $this ; } |
Please login to continue.