You are here

status-messages.html.twig in Drupal 10

Theme override for status messages.

Displays status, error, and warning messages, grouped by type.

An invisible heading identifies the messages for assistive technology. Sighted users see a colored box. See http://www.w3.org/TR/WCAG-TECHS/H69.html for info.

Add an ARIA label to the contentinfo area so that assistive technology user agents will better describe this landmark.

Available variables:

  • message_list: List of messages to be displayed, grouped by type.
  • status_headings: List of all status types.
  • attributes: HTML attributes for the element, including:
    • class: HTML classes.

File

core/themes/starterkit_theme/templates/misc/status-messages.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Theme override for status messages.
  5. *
  6. * Displays status, error, and warning messages, grouped by type.
  7. *
  8. * An invisible heading identifies the messages for assistive technology.
  9. * Sighted users see a colored box. See http://www.w3.org/TR/WCAG-TECHS/H69.html
  10. * for info.
  11. *
  12. * Add an ARIA label to the contentinfo area so that assistive technology
  13. * user agents will better describe this landmark.
  14. *
  15. * Available variables:
  16. * - message_list: List of messages to be displayed, grouped by type.
  17. * - status_headings: List of all status types.
  18. * - attributes: HTML attributes for the element, including:
  19. * - class: HTML classes.
  20. */
  21. #}
  22. <div data-drupal-messages>
  23. {% block messages %}
  24. {% for type, messages in message_list %}
  25. {%
  26. set classes = [
  27. 'messages',
  28. 'messages--' ~ type,
  29. ]
  30. %}
  31. <div role="contentinfo" aria-label="{{ status_headings[type] }}"{{ attributes.addClass(classes)|without('role', 'aria-label') }}>
  32. {% if type == 'error' %}
  33. <div role="alert">
  34. {% endif %}
  35. {% if status_headings[type] %}
  36. <h2 class="visually-hidden">{{ status_headings[type] }}</h2>
  37. {% endif %}
  38. {% if messages|length > 1 %}
  39. <ul class="messages__list">
  40. {% for message in messages %}
  41. <li class="messages__item">{{ message }}</li>
  42. {% endfor %}
  43. </ul>
  44. {% else %}
  45. {{ messages|first }}
  46. {% endif %}
  47. {% if type == 'error' %}
  48. </div>
  49. {% endif %}
  50. </div>
  51. {# Remove type specific classes. #}
  52. {% set attributes = attributes.removeClass(classes) %}
  53. {% endfor %}
  54. {% endblock messages %}
  55. </div>