You are here

public function FormState::isExecuted in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/lib/Drupal/Core/Form/FormState.php \Drupal\Core\Form\FormState::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/FormState.php, line 540
Contains \Drupal\Core\Form\FormState.

Class

FormState
Stores information about the state of a form.

Namespace

Drupal\Core\Form

Code

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