You are here

public function FormStateDecoratorBase::isSubmitted in Markdown 8.2

Determines if the form has been submitted.

Return value

bool TRUE if the form has been submitted, FALSE otherwise.

Overrides FormStateInterface::isSubmitted

File

src/BcSupport/FormStateDecoratorBase.php, line 332

Class

FormStateDecoratorBase
Decorates another form state.

Namespace

Drupal\markdown\BcSupport

Code

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