You are here

public function FormStateValuesTrait::setValueForElement in Drupal 9

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Form/FormStateValuesTrait.php \Drupal\Core\Form\FormStateValuesTrait::setValueForElement()

Implements \Drupal\Core\Form\FormStateInterface::setValueForElement()

File

core/lib/Drupal/Core/Form/FormStateValuesTrait.php, line 79

Class

FormStateValuesTrait
Provides methods to manage form state values.

Namespace

Drupal\Core\Form

Code

public function setValueForElement(array $element, $value) {
  return $this
    ->setValue($element['#parents'], $value);
}