Same filename in this branch
  1. 10 core/modules/system/templates/status-messages.html.twig
  2. 10 core/themes/claro/templates/misc/status-messages.html.twig
  3. 10 core/themes/olivero/templates/misc/status-messages.html.twig
  4. 10 core/themes/stable9/templates/media-library/status-messages.html.twig
  5. 10 core/themes/starterkit_theme/templates/misc/status-messages.html.twig
  6. 10 core/modules/system/tests/themes/test_messages/templates/status-messages.html.twig
  7. 10 core/profiles/demo_umami/themes/umami/templates/components/messages/status-messages.html.twig
Same filename and directory in other branches
  1. 8.9.x core/profiles/demo_umami/themes/umami/templates/components/messages/status-messages.html.twig
  2. 9 core/profiles/demo_umami/themes/umami/templates/components/messages/status-messages.html.twig

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.
3 theme calls to status-messages.html.twig
ContentTranslationHandlerTest::providerTestEntityFormSharedElements in core/modules/content_translation/tests/src/Kernel/ContentTranslationHandlerTest.php
Returns test cases for ::testEntityFormSharedElements().
LayoutBuilderEntityFormTrait::buildMessageContainer in core/modules/layout_builder/src/Form/LayoutBuilderEntityFormTrait.php
Build the message container.
StatusMessages::renderMessages in core/lib/Drupal/Core/Render/Element/StatusMessages.php
#lazy_builder callback; replaces placeholder with messages.

File

core/profiles/demo_umami/themes/umami/templates/components/messages/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. <div class="messages__content container">
  33. {% if type == 'error' %}
  34. <div role="alert">
  35. {% endif %}
  36. {% if status_headings[type] %}
  37. <h2 class="visually-hidden">{{ status_headings[type] }}</h2>
  38. {% endif %}
  39. {% if messages|length > 1 %}
  40. <ul class="messages__list">
  41. {% for message in messages %}
  42. <li class="messages__item">{{ message }}</li>
  43. {% endfor %}
  44. </ul>
  45. {% else %}
  46. <span class="messages__item">{{ messages|first }}</span>
  47. {% endif %}
  48. {% if type == 'error' %}
  49. </div>
  50. {% endif %}
  51. </div>
  52. </div>
  53. {# Remove type specific classes. #}
  54. {% set attributes = attributes.removeClass(classes) %}
  55. {% endfor %}
  56. {% endblock messages %}
  57. </div>