FormStateDecoratorBase::setValues

public FormStateDecoratorBase::setValues(array $values)

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/FormStateDecoratorBase.php, line 526

Class

FormStateDecoratorBase
Decorates another form state.

Namespace

Drupal\Core\Form

Code

public function setValues(array $values) {
  $this->decoratedFormState->setValues($values);

  return $this;
}
doc_Drupal
2016-10-29 09:16:29
Comments
Leave a Comment

Please login to continue.