1 |
efrain |
1 |
{{!
|
|
|
2 |
This file is part of Moodle - http://moodle.org/
|
|
|
3 |
|
|
|
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.
|
|
|
8 |
|
|
|
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.
|
|
|
13 |
|
|
|
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/>.
|
|
|
16 |
}}
|
|
|
17 |
{{!
|
|
|
18 |
@template core/permissionmanager_role
|
|
|
19 |
|
|
|
20 |
Template which defines the role name in the capability table.
|
|
|
21 |
|
|
|
22 |
Classes required for JS:
|
|
|
23 |
* none
|
|
|
24 |
|
|
|
25 |
Data attributes required for JS:
|
|
|
26 |
* role-id
|
|
|
27 |
* action
|
|
|
28 |
|
|
|
29 |
Context variables required for this template:
|
|
|
30 |
* rolename Name of the role rendered - must have been prepared for output with format_string,
|
|
|
31 |
or more likely one of the role API functions like role_fix_names.
|
|
|
32 |
* roleid Id of the role
|
|
|
33 |
* action Which action is done on click
|
|
|
34 |
* spanclass class attribute of span
|
|
|
35 |
* linkclass class attribute of link
|
|
|
36 |
* adminurl moodle admin url
|
|
|
37 |
* icon moodle icon for delete(x)
|
|
|
38 |
* iconalt alt text for the icon. Must have been HTML escaped.
|
|
|
39 |
|
|
|
40 |
Example context (json):
|
|
|
41 |
{
|
|
|
42 |
"rolename": "Manager",
|
|
|
43 |
"roleid": 1,
|
|
|
44 |
"action": "prevent",
|
|
|
45 |
"spanclass": "allowed",
|
|
|
46 |
"linkclass": "preventlink",
|
|
|
47 |
"adminurl": "http://localhost/moodle/admin/",
|
|
|
48 |
"icon": "t/delete",
|
|
|
49 |
"iconalt": "Delete Student role"
|
|
|
50 |
}
|
|
|
51 |
}}
|
|
|
52 |
<span style="display:inline-block;" class="{{spanclass}}"> {{{rolename}}}
|
|
|
53 |
<a href="{{adminurl}}roles/permissions.php" class="{{linkclass}}" data-role-id="{{roleid}}" data-action="{{action}}">
|
|
|
54 |
{{#icon}}
|
|
|
55 |
{{#pix}}{{icon}}, core, {{{iconalt}}}{{/pix}}
|
|
|
56 |
{{/icon}}
|
|
|
57 |
</a>
|
|
|
58 |
</span>
|