You are here

public function FormStateDecoratorBase::isExecuted in Markdown 8.2

Determines if the form was submitted and has been processed and executed.

Return value

bool TRUE if the form was submitted and has been processed and executed.

Overrides FormStateInterface::isExecuted

File

src/BcSupport/FormStateDecoratorBase.php, line 106

Class

FormStateDecoratorBase
Decorates another form state.

Namespace

Drupal\markdown\BcSupport

Code

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