Same name and namespace in other branches
  1. 8.9.x core/lib/Drupal/Core/Form/FormStateDecoratorBase.php \Drupal\Core\Form\FormStateDecoratorBase::isExecuted()
  2. 9 core/lib/Drupal/Core/Form/FormStateDecoratorBase.php \Drupal\Core\Form\FormStateDecoratorBase::isExecuted()

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

core/lib/Drupal/Core/Form/FormStateDecoratorBase.php, line 98

Class

FormStateDecoratorBase
Decorates another form state.

Namespace

Drupal\Core\Form

Code

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