FormStateDecoratorBase::isSubmitted

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

public function isSubmitted() {
  return $this->decoratedFormState->isSubmitted();
}
doc_Drupal
2016-10-29 09:16:21
Comments
Leave a Comment

Please login to continue.