Merge branch 'mdl-53133-m30' of git://github.com/deraadt/moodle into MOODLE_30_STABLE
[moodle.git] / lib / templates / permissionmanager_role.mustache
blobcec6d59d41c494f018b4c8cff816455f8eb4a135
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/",
45      "imageurl": "http://localhost/moodle/theme/image.php?theme=base&component=core&image=t%2Fdelete"}
47 <span style="display:inline-block;" class="{{spanclass}}">&nbsp;{{rolename}}&nbsp;
48     {{#imageurl}}
49         <a href="{{adminurl}}roles/permissions.php" class="{{linkclass}}" data-role-id="{{roleid}}" data-action="{{action}}">
50             <img src="{{imageurl}}" alt="{{action}}" />
51         </a>
52     {{/imageurl}}
53 </span>