Moodle release 3.3.8
[moodle.git] / message / templates / notification_preferences_component.mustache
blob59f529592c1e3ea1ad14ab08fdfb4dac061afbd7
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 core_message/notification_preferences_component
20     The notification preferences page
22     Classes required for JS:
23     * None
25     Data attibutes required for JS:
26     * All data attributes are required
28     Context variables required for this template:
29     * displayname   The component display name
30     * processors    The list of processors for this component
31     * notifications The list of notifications
33     Example context (json):
34     {
35         "displayname": "System",
36         "processors": [
37             {
38                 "onlinehelphtml": "<p>help button HTML</p>",
39                 "offlinehelphtml": "<p>help button HTML</p>"
40             }
41         ],
42         "notifications": [
43             {
44                 "displayname": "Notices about minor problems",
45                 "preferencekey": "message_provider_moodle_notices",
46                 "processors": [
47                     {
48                         "displayname": "Popup notification",
49                         "name": "popup",
50                         "locked": 0,
51                         "userconfigured": 1,
52                         "loggedin": {
53                             "name": "loggedin",
54                             "displayname": "When I'm logged in",
55                             "checked": 0,
56                             "disableall": 0
57                         },
58                         "loggedoff": {
59                             "name": "loggedoff",
60                             "displayname": "When I'm offline",
61                             "checked": 0,
62                             "disableall": 0
63                         }
64                     }
65                 ]
66             }
67         ]
68     }
70 <tr>
71     <th><h4>{{displayname}}</h4></th>
72     {{#processors}}
73         <td class="align-bottom">
74             <div class="container-fluid">
75                 <div class="row-fluid">
76                     <div class="span6 col-xs-6">
77                         {{#str}} loggedin, message {{/str}}
78                         {{#onlinehelphtml}}{{{.}}}{{/onlinehelphtml}}
79                     </div>
80                     <div class="span6 col-xs-6">
81                         {{#str}} loggedoff, message {{/str}}
82                         {{#offlinehelphtml}}{{{.}}}{{/offlinehelphtml}}
83                     </div>
84                 </div>
85             </div>
86         </td>
87     {{/processors}}
88 </tr>
89 {{#notifications}}
90     {{> message/notification_preferences_component_notification }}
91 {{/notifications}}