Merge branch 'MDL-63137-master' of git://github.com/aanabit/moodle
[moodle.git] / lib / templates / permissionmanager_role.mustache
blobd2a1652dc380b6c9084e63080930db6089264043
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/permissionmanager_role
20     Template which defines the role name in the capability table.
22     Classes required for JS:
23     * none
25     Data attributes required for JS:
26     * role-id
27     * action
29     Context variables required for this template:
30     * rolename Name of the role rendered
31     * roleid Id of the role
32     * action WEhich action is done on click
33     * spanclass class attribute of span
34     * linkclass class attribute of link
35     * adminurl moodle admin url
36     * imageurl moodle url for delete(x) image
38     Example context (json):
39     {"rolename" : "Manager",
40      "roleid" : 1,
41      "action": "prevent",
42      "spanclass": "allowed",
43      "linkclass": "preventlink",
44      "adminurl" : "http://localhost/moodle/admin/"}
46 <span style="display:inline-block;" class="{{spanclass}}">&nbsp;{{rolename}}&nbsp;
47     <a href="{{adminurl}}roles/permissions.php" class="{{linkclass}}" data-role-id="{{roleid}}" data-action="{{action}}">
48         {{#icon}}
49             {{#pix}}{{icon}}, core, {{iconalt}}{{/pix}}
50         {{/icon}}
51     </a>
52 </span>