status-messages.html.twig

Same filename in this branch
  1. 10 core/themes/olivero/templates/misc/status-messages.html.twig
  2. 10 core/themes/stable9/templates/media-library/status-messages.html.twig
  3. 10 core/themes/claro/templates/misc/status-messages.html.twig
  4. 10 core/themes/starterkit_theme/templates/misc/status-messages.html.twig
  5. 10 core/modules/system/tests/themes/test_messages/templates/status-messages.html.twig
  6. 10 core/modules/system/templates/status-messages.html.twig
Same filename in other branches
  1. 9 core/profiles/demo_umami/themes/umami/templates/components/messages/status-messages.html.twig
  2. 9 core/themes/olivero/templates/misc/status-messages.html.twig
  3. 9 core/themes/stable9/templates/media-library/status-messages.html.twig
  4. 9 core/themes/seven/templates/classy/misc/status-messages.html.twig
  5. 9 core/themes/claro/templates/misc/status-messages.html.twig
  6. 9 core/themes/bartik/templates/status-messages.html.twig
  7. 9 core/themes/stable/templates/misc/status-messages.html.twig
  8. 9 core/themes/starterkit_theme/templates/misc/status-messages.html.twig
  9. 9 core/themes/classy/templates/misc/status-messages.html.twig
  10. 9 core/modules/system/tests/themes/test_messages/templates/status-messages.html.twig
  11. 9 core/modules/system/templates/status-messages.html.twig
  12. 8.9.x core/profiles/demo_umami/themes/umami/templates/components/messages/status-messages.html.twig
  13. 8.9.x core/themes/seven/templates/classy/misc/status-messages.html.twig
  14. 8.9.x core/themes/claro/templates/misc/status-messages.html.twig
  15. 8.9.x core/themes/bartik/templates/status-messages.html.twig
  16. 8.9.x core/themes/stable/templates/misc/status-messages.html.twig
  17. 8.9.x core/themes/classy/templates/misc/status-messages.html.twig
  18. 8.9.x core/modules/system/tests/themes/test_messages/templates/status-messages.html.twig
  19. 8.9.x core/modules/system/templates/status-messages.html.twig
  20. 11.x core/profiles/demo_umami/themes/umami/templates/components/messages/status-messages.html.twig
  21. 11.x core/themes/olivero/templates/misc/status-messages.html.twig
  22. 11.x core/themes/stable9/templates/media-library/status-messages.html.twig
  23. 11.x core/themes/claro/templates/misc/status-messages.html.twig
  24. 11.x core/themes/starterkit_theme/templates/misc/status-messages.html.twig
  25. 11.x core/modules/system/tests/themes/test_messages/templates/status-messages.html.twig
  26. 11.x core/modules/system/templates/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.
6 theme calls to status-messages.html.twig
AnnounceRenderer::render in core/modules/announcements_feed/src/AnnounceRenderer.php
Generates the announcements feed render array.
CKEditor5::buildConfigurationForm in core/modules/ckeditor5/src/Plugin/Editor/CKEditor5.php
Form constructor.
ContentTranslationHandler::entityFormSharedElements in core/modules/content_translation/src/ContentTranslationHandler.php
Process callback: determines which elements get clue in the form.
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.

... See full list

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. <div class="messages__wrapper container">
  24. {% block messages %}
  25. {% for type, messages in message_list %}
  26. {%
  27. set classes = [
  28. 'messages',
  29. 'messages--' ~ type,
  30. ]
  31. %}
  32. <div
  33. aria-label="{{ status_headings[type] }}"
  34. {{ attributes.addClass(classes)|without('aria-label') }}
  35. role={{ type == 'error' or type == 'warning' ? 'alert' : 'status' }}
  36. >
  37. <div class="messages__content">
  38. {% if status_headings[type] %}
  39. <h2 class="visually-hidden">{{ status_headings[type] }}</h2>
  40. {% endif %}
  41. {% if messages|length > 1 %}
  42. <ul class="messages__list">
  43. {% for message in messages %}
  44. <li class="messages__item">{{ message }}</li>
  45. {% endfor %}
  46. </ul>
  47. {% else %}
  48. <span class="messages__item">{{ messages|first }}</span>
  49. {% endif %}
  50. </div>
  51. </div>
  52. {# Remove type specific classes. #}
  53. {% set attributes = attributes.removeClass(classes) %}
  54. {% endfor %}
  55. {% endblock messages %}
  56. </div>
  57. </div>

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.