You are here

public function FormStateDecoratorBase::getUserInput in Markdown 8.2

Returns the form values as they were submitted by the user.

These are raw and unvalidated, 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

src/BcSupport/FormStateDecoratorBase.php, line 504

Class

FormStateDecoratorBase
Decorates another form state.

Namespace

Drupal\markdown\BcSupport

Code

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