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