public &FormStateDecoratorBase::getValues()
Returns the submitted and sanitized form values.
Return value
array An associative array of values submitted to the form.
Overrides FormStateInterface::getValues
File
- core/lib/Drupal/Core/Form/FormStateDecoratorBase.php, line 512
Class
- FormStateDecoratorBase
- Decorates another form state.
Namespace
Drupal\Core\Form
Code
1 2 3 | public function &getValues() { return $this ->decoratedFormState->getValues(); } |
Please login to continue.