public function FormStateValuesTrait::setValues in Drupal 9
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Form/FormStateValuesTrait.php \Drupal\Core\Form\FormStateValuesTrait::setValues()
- 10 core/lib/Drupal/Core/Form/FormStateValuesTrait.php \Drupal\Core\Form\FormStateValuesTrait::setValues()
Implements \Drupal\Core\Form\FormStateInterface::setValues()
File
- core/
lib/ Drupal/ Core/ Form/ FormStateValuesTrait.php, line 36
Class
- FormStateValuesTrait
- Provides methods to manage form state values.
Namespace
Drupal\Core\FormCode
public function setValues(array $values) {
$existing_values =& $this
->getValues();
$existing_values = $values;
return $this;
}