function FormState::getUserInput
Same name and namespace in other branches
- 9 core/lib/Drupal/Core/Form/FormState.php \Drupal\Core\Form\FormState::getUserInput()
- 8.9.x core/lib/Drupal/Core/Form/FormState.php \Drupal\Core\Form\FormState::getUserInput()
- 11.x core/lib/Drupal/Core/Form/FormState.php \Drupal\Core\Form\FormState::getUserInput()
Returns the form values as they were submitted by the user.
These are raw and non validated, so should not be used without a thorough understanding of security implications. In almost all cases, code should use self::getValues() and self::getValue() exclusively.
Return value
array An associative array of values submitted to the form.
Overrides FormStateInterface::getUserInput
File
-
core/
lib/ Drupal/ Core/ Form/ FormState.php, line 1011
Class
- FormState
- Stores information about the state of a form.
Namespace
Drupal\Core\FormCode
public function &getUserInput() {
return $this->input;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.