mirror of
https://github.com/moodle/moodle.git
synced 2025-02-23 11:27:51 +01:00
15 lines
532 B
PHP
Executable File
15 lines
532 B
PHP
Executable File
<?php
|
|
// this page deals with the 2 tabs for manage.php and grant.php
|
|
|
|
$toprow[] = new tabobject('manage', $CFG->wwwroot.'/admin/roles/manage.php', get_string('manageroles', 'role'));
|
|
|
|
$toprow[] = new tabobject('allowassign', $CFG->wwwroot.'/admin/roles/allowassign.php', get_string('allowassign', 'role'));
|
|
|
|
$toprow[] = new tabobject('allowoverride', $CFG->wwwroot.'/admin/roles/allowoverride.php', get_string('allowoverride', 'role'));
|
|
|
|
$tabs = array($toprow);
|
|
|
|
print_tabs($tabs, $currenttab);
|
|
|
|
?>
|