You are here

public function FormStateValuesTrait::setValues in Drupal 9

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Form/FormStateValuesTrait.php \Drupal\Core\Form\FormStateValuesTrait::setValues()
  2. 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\Form

Code

public function setValues(array $values) {
  $existing_values =& $this
    ->getValues();
  $existing_values = $values;
  return $this;
}