function FormStateValuesTrait::setValues

Same name and namespace in other branches
  1. 9 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()
  3. 11.x 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;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.