You are here

public function FormState::getErrors in Drupal 9

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

Returns an associative array of all errors.

Return value

array An array of all errors, keyed by the name of the form element.

Overrides FormStateInterface::getErrors

2 calls to FormState::getErrors()
FormState::getError in core/lib/Drupal/Core/Form/FormState.php
Returns the error message filed against the given form element.
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 1125

Class

FormState
Stores information about the state of a form.

Namespace

Drupal\Core\Form

Code

public function getErrors() {
  return $this->errors;
}