public 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 537
Class
- FormState
- Stores information about the state of a form.
Namespace
Drupal\Core\Form
Code
1 2 3 | public function isExecuted() { return $this ->executed; } |
Please login to continue.