Security update for Core, with self-updated composer
[yaffs-website] / web / core / modules / inline_form_errors / inline_form_errors.module
index 52e572d3003deff9465b2021f0f65c60aaaaa119..d5c40b43b1465a3e08697ac0bbdfad6b8909c22a 100644 (file)
@@ -15,7 +15,13 @@ function inline_form_errors_help($route_name, RouteMatchInterface $route_match)
     case 'help.page.inline_form_errors':
       $output = '';
       $output .= '<h3>' . t('About') . '</h3>';
-      $output .= '<p>' . t('The Inline Form Errors module provides an experimental approach to form errors, placing the error messages next to the elements themselves. For more information, see the <a href=":inline_form_error">online documentation for the Inline Form Errors module</a>.', [':inline_form_error' => 'https://www.drupal.org/documentation/modules/inline_form_error']) . '</p>';
+      $output .= '<p>' . t('The Inline Form Errors module makes it easier for users to identify which errors need to be resolved by providing a summary of all errors and by placing the individual error messages next to the form elements themselves. For more information, see the <a href=":inline_form_error">online documentation for the Inline Form Errors module</a>.', [':inline_form_error' => 'https://www.drupal.org/docs/8/core/modules/inline-form-errors']) . '</p>';
+      $output .= '<h3>' . t('Uses') . '</h3>';
+      $output .= '<dl>';
+      $output .= '<dt>' . t('Displaying error messages') . '</dt>';
+      $output .= '<dd>' . t('When a form is not filled in correctly (for example, if a required field is left blank), a warning message is displayed at the top of the form. This message links to the affected form elements, and individual error messages are displayed next to each form element.') . '</dd>';
+      $output .= '<dt>' . t('Displaying error messages in browsers with HTML5 form validation') . '</dt>';
+      $output .= '<dd>' . t('In browsers that support HTML5 form validation, users will first see the error messages generated by their browser. In this case, the inline form error messages are only displayed after the HTML5 validation errors have been resolved.') . '</dd>';
       return $output;
   }
 }