mirror of
https://github.com/moodle/moodle.git
synced 2025-08-09 10:56:56 +02:00
15 lines
562 B
PHP
15 lines
562 B
PHP
<?php // $Id$
|
|
$row = $tabs = array();
|
|
$row[] = new tabobject('graderreport',
|
|
$CFG->wwwroot.'/grade/report/grader/index.php?id='.$courseid,
|
|
get_string('modulename', 'gradereport_grader'));
|
|
|
|
$row[] = new tabobject('preferences',
|
|
$CFG->wwwroot.'/grade/report/grader/preferences.php?id='.$courseid,
|
|
get_string('preferences'));
|
|
|
|
$tabs[] = $row;
|
|
echo '<div class="gradedisplay">';
|
|
print_tabs($tabs, $currenttab);
|
|
echo '</div>';
|
|
?>
|