You are here

public static function FormState::hasAnyErrors in Zircon Profile 8.0

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

Determines if any forms have any errors.

Return value

bool TRUE if any form has any errors, FALSE otherwise.

Overrides FormStateInterface::hasAnyErrors

2 calls to FormState::hasAnyErrors()
FormBuilder::processForm in core/lib/Drupal/Core/Form/FormBuilder.php
Processes a form submission.
ViewExecutable::build in core/modules/views/src/ViewExecutable.php
Build the query for the view.

File

core/lib/Drupal/Core/Form/FormState.php, line 1112
Contains \Drupal\Core\Form\FormState.

Class

FormState
Stores information about the state of a form.

Namespace

Drupal\Core\Form

Code

public static function hasAnyErrors() {
  return static::$anyErrors;
}