status-messages.html.twig

Same filename in this branch
  1. 8.9.x core/profiles/demo_umami/themes/umami/templates/components/messages/status-messages.html.twig
  2. 8.9.x core/themes/seven/templates/classy/misc/status-messages.html.twig
  3. 8.9.x core/themes/claro/templates/misc/status-messages.html.twig
  4. 8.9.x core/themes/bartik/templates/status-messages.html.twig
  5. 8.9.x core/themes/stable/templates/misc/status-messages.html.twig
  6. 8.9.x core/themes/classy/templates/misc/status-messages.html.twig
  7. 8.9.x core/modules/system/templates/status-messages.html.twig
Same filename and directory 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. 10 core/profiles/demo_umami/themes/umami/templates/components/messages/status-messages.html.twig
  13. 10 core/themes/olivero/templates/misc/status-messages.html.twig
  14. 10 core/themes/stable9/templates/media-library/status-messages.html.twig
  15. 10 core/themes/claro/templates/misc/status-messages.html.twig
  16. 10 core/themes/starterkit_theme/templates/misc/status-messages.html.twig
  17. 10 core/modules/system/tests/themes/test_messages/templates/status-messages.html.twig
  18. 10 core/modules/system/templates/status-messages.html.twig
  19. 11.x core/profiles/demo_umami/themes/umami/templates/components/messages/status-messages.html.twig
  20. 11.x core/themes/olivero/templates/misc/status-messages.html.twig
  21. 11.x core/themes/stable9/templates/media-library/status-messages.html.twig
  22. 11.x core/themes/claro/templates/misc/status-messages.html.twig
  23. 11.x core/themes/starterkit_theme/templates/misc/status-messages.html.twig
  24. 11.x core/modules/system/tests/themes/test_messages/templates/status-messages.html.twig
  25. 11.x core/modules/system/templates/status-messages.html.twig

Test templates file with extra messages div.

3 theme calls to status-messages.html.twig
DefaultsEntityForm::buildMessage in core/modules/layout_builder/src/Form/DefaultsEntityForm.php
Renders a message to display at the top of the layout builder.
OverridesEntityForm::buildMessage in core/modules/layout_builder/src/Form/OverridesEntityForm.php
Renders a message to display at the top of the layout builder.
StatusMessages::renderMessages in core/lib/Drupal/Core/Render/Element/StatusMessages.php
#lazy_builder callback; replaces placeholder with messages.

File

core/modules/system/tests/themes/test_messages/templates/status-messages.html.twig

View source
  1. {#
  2. /**
  3. * @file
  4. * Test templates file with extra messages div.
  5. */
  6. #}
  7. <div data-drupal-messages>
  8. {% block messages %}
  9. {% for type, messages in message_list %}
  10. {%
  11. set classes = [
  12. 'messages',
  13. 'messages--' ~ type,
  14. ]
  15. %}
  16. <div role="contentinfo" aria-label="{{ status_headings[type] }}"{{ attributes.addClass(classes)|without('role', 'aria-label') }}>
  17. {% if type == 'error' %}
  18. <div role="alert">
  19. {% endif %}
  20. {% if status_headings[type] %}
  21. <h2 class="visually-hidden">{{ status_headings[type] }}</h2>
  22. {% endif %}
  23. {% if messages|length > 1 %}
  24. <ul class="messages__list">
  25. {% for message in messages %}
  26. <li class="messages__item">{{ message }}</li>
  27. {% endfor %}
  28. </ul>
  29. {% else %}
  30. {{ messages|first }}
  31. {% endif %}
  32. {% if type == 'error' %}
  33. </div>
  34. {% endif %}
  35. </div>
  36. {# Remove type specific classes. #}
  37. {% set attributes = attributes.removeClass(classes) %}
  38. {% endfor %}
  39. {% endblock messages %}
  40. </div>
  41. <div data-drupal-messages-other></div>

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