Merge branch 'MDL-46256_310' of https://github.com/timhunt/moodle into MOODLE_310_STABLE
[moodle.git] / calendar / templates / event_filter_key.mustache
blob14123d7a6f23475d35106a3cc5773f31fd7eb8f9
1 {{!
2     This file is part of Moodle - http://moodle.org/
4     Moodle is free software: you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation, either version 3 of the License, or
7     (at your option) any later version.
9     Moodle is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
14     You should have received a copy of the GNU General Public License
15     along with Moodle.  If not, see <http://www.gnu.org/licenses/>.
17 {{!
18     @template calendar/event_filter_key
20     Key item for the event filter.
22     Classes required for JS:
23     * none
25     Data attributes required for JS:
26     * none
28     Example context (json):
29     {
30     }
32 <a href="#" data-action="filter-event-type" data-eventtype="{{eventtype}}" data-eventtype-hidden="{{hidden}}">
33     {{^hidden}}
34         <span class="calendar_event_{{eventtype}}">
35             {{#pix}}i/hide, core, {{#str}}hideeventtype, calendar, {{name}}{{/str}}{{/pix}}
36         </span>
37         {{> core_calendar/event_icon}}
38         <span class="eventname">{{#str}}hideeventtype, calendar, {{name}}{{/str}}</span>
39     {{/hidden}}
40     {{#hidden}}
41         <span class="calendar_event_{{eventtype}}">
42             {{#pix}}i/show, core, {{#str}}showeventtype, calendar, {{name}}{{/str}}{{/pix}}
43         </span>
44         {{> core_calendar/event_icon}}
45         <span class="eventname">{{#str}}showeventtype, calendar, {{name}}{{/str}}</span>
46     {{/hidden}}
48 </a>