FormStateDecoratorBase::getValues

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();
}
doc_Drupal
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.