You are here

public function FormStateDecoratorBase::getValues in Markdown 8.2

Returns the submitted and sanitized form values.

Return value

array An associative array of values submitted to the form.

Overrides FormStateInterface::getValues

1 call to FormStateDecoratorBase::getValues()
SubformState::getValues in src/BcSupport/SubformState.php
Implements \Drupal\Core\Form\FormStateInterface::getValues()

File

src/BcSupport/FormStateDecoratorBase.php, line 520

Class

FormStateDecoratorBase
Decorates another form state.

Namespace

Drupal\markdown\BcSupport

Code

public function &getValues() {
  return $this->decoratedFormState
    ->getValues();
}