public function FormState::setValues in Zircon Profile 8.0
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Form/FormState.php \Drupal\Core\Form\FormState::setValues()
Sets the submitted form values.
This should be avoided, since these values have been validated already. Use self::setUserInput() instead.
Parameters
array $values: The multi-dimensional associative array of form values.
Return value
$this
Overrides FormStateInterface::setValues
File
- core/
lib/ Drupal/ Core/ Form/ FormState.php, line 1001 - Contains \Drupal\Core\Form\FormState.
Class
- FormState
- Stores information about the state of a form.
Namespace
Drupal\Core\FormCode
public function setValues(array $values) {
$this->values = $values;
return $this;
}