Version 1
[yaffs-website] / web / core / themes / classy / templates / misc / status-messages.html.twig
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  * - display: (optional) May have a value of 'status' or 'error' when only
19  *   displaying messages of that specific type.
20  * - attributes: HTML attributes for the element, including:
21  *   - class: HTML classes.
22  */
23 #}
24 {{ attach_library('classy/messages') }}
25 {% block messages %}
26 {% for type, messages in message_list %}
27   {%
28     set classes = [
29       'messages',
30       'messages--' ~ type,
31     ]
32   %}
33   <div role="contentinfo" aria-label="{{ status_headings[type] }}"{{ attributes.addClass(classes)|without('role', 'aria-label') }}>
34     {% if type == 'error' %}
35       <div role="alert">
36     {% endif %}
37       {% if status_headings[type] %}
38         <h2 class="visually-hidden">{{ status_headings[type] }}</h2>
39       {% endif %}
40       {% if messages|length > 1 %}
41         <ul class="messages__list">
42           {% for message in messages %}
43             <li class="messages__item">{{ message }}</li>
44           {% endfor %}
45         </ul>
46       {% else %}
47         {{ messages|first }}
48       {% endif %}
49     {% if type == 'error' %}
50       </div>
51     {% endif %}
52   </div>
53   {# Remove type specific classes. #}
54   {% set attributes = attributes.removeClass(classes) %}
55 {% endfor %}
56 {% endblock messages %}