public FormStateDecoratorBase::isSubmitted()
Determines if the form has been submitted.
Return value
bool TRUE if the form has been submitted, FALSE otherwise.
Overrides FormStateInterface::isSubmitted
File
- core/lib/Drupal/Core/Form/FormStateDecoratorBase.php, line 324
Class
- FormStateDecoratorBase
- Decorates another form state.
Namespace
Drupal\Core\Form
Code
1 2 3 | public function isSubmitted() { return $this ->decoratedFormState->isSubmitted(); } |
Please login to continue.