[ Index ] |
PHP Cross Reference of Unnamed Project |
[Summary view] [Print] [Text view]
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 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 37 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"} 46 }} 47 <span style="display:inline-block;" class="{{spanclass}}"> {{rolename}} 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>
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Thu Aug 11 10:00:09 2016 | Cross-referenced by PHPXref 0.7.1 |