You are here

public function FormState::isValidationComplete in Drupal 9

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Form/FormState.php \Drupal\Core\Form\FormState::isValidationComplete()

Determines if validation has been completed.

Return value

bool TRUE if validation is complete, FALSE otherwise.

Overrides FormStateInterface::isValidationComplete

1 call to FormState::isValidationComplete()
FormState::setErrorByName in core/lib/Drupal/Core/Form/FormState.php
Files an error against a form element.

File

core/lib/Drupal/Core/Form/FormState.php, line 850

Class

FormState
Stores information about the state of a form.

Namespace

Drupal\Core\Form

Code

public function isValidationComplete() {
  return $this->validation_complete;
}