protected function displayErrorMessages(array
$form, FormStateInterface
$form_state) { // Skip generating inline form errors when opted out.
if (!
empty($form['#disable_inline_form_errors'
])) { parent::
displayErrorMessages($form,
$form_state);
return;
} $error_links =
[];
$errors =
$form_state->
getErrors();
// Loop through all form errors and check if we need to display a link.
foreach ($errors as $name =>
$error) { $form_element = FormElementHelper::
getElementByName($name,
$form);
$title = FormElementHelper::
getElementTitle($form_element);
// Only show links to erroneous elements that are visible.
$is_visible_element = Element::
isVisibleElement($form_element);
// Only show links for elements that have a title themselves or have
// children with a title.
$has_title = !
empty($title);
// Only show links for elements with an ID.
$has_id = !
empty($form_element['#id'
]);
// Do not show links to elements with suppressed messages. Most often