mirror of
https://github.com/moodle/moodle.git
synced 2025-01-18 22:08:20 +01:00
79 lines
2.9 KiB
PHP
79 lines
2.9 KiB
PHP
<?php //$Id$
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
// NOTICE OF COPYRIGHT //
|
|
// //
|
|
// Moodle - Modular Object-Oriented Dynamic Learning Environment //
|
|
// http://moodle.org //
|
|
// //
|
|
// Copyright (C) 1999 onwards Martin Dougiamas http://moodle.com //
|
|
// //
|
|
// This program is free software; you can redistribute it and/or modify //
|
|
// it under the terms of the GNU General Public License as published by //
|
|
// the Free Software Foundation; either version 2 of the License, or //
|
|
// (at your option) any later version. //
|
|
// //
|
|
// This program is distributed in the hope that it will be useful, //
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of //
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the //
|
|
// GNU General Public License for more details: //
|
|
// //
|
|
// http://www.gnu.org/copyleft/gpl.html //
|
|
// //
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
require '../../config.php';
|
|
|
|
$courseid = required_param('id', PARAM_INT);
|
|
|
|
/// basic access checks
|
|
if (!$course = get_record('course', 'id', $courseid)) {
|
|
print_error('nocourseid');
|
|
}
|
|
require_login($course);
|
|
$context = get_context_instance(CONTEXT_COURSE, $course->id);
|
|
|
|
/// find all accessible reports
|
|
if ($reports = get_list_of_plugins('grade/report', 'CVS')) { // Get all installed reports
|
|
foreach ($reports as $key => $plugin) { // Remove ones we can't see
|
|
if (!has_capability('gradereport/'.$plugin.':view', $context)) {
|
|
unset($reports[$key]);
|
|
}
|
|
}
|
|
}
|
|
|
|
if (empty($reports)) {
|
|
error('No reports accessible', $CFG->wwwroot.'/course/view.php?id='.$course->id); // TODO: localize
|
|
}
|
|
|
|
if (!isset($USER->grade_last_report)) {
|
|
$USER->grade_last_report = array();
|
|
}
|
|
|
|
if (!empty($USER->grade_last_report[$course->id])) {
|
|
$last = $USER->grade_last_report[$course->id];
|
|
} else {
|
|
$last = null;
|
|
}
|
|
|
|
if (!in_array($last, $reports)) {
|
|
$last = null;
|
|
}
|
|
|
|
if (empty($last)) {
|
|
if (in_array('grader', $reports)) {
|
|
$last = 'grader';
|
|
|
|
} else if (in_array('user', $reports)) {
|
|
$last = 'user';
|
|
|
|
} else {
|
|
$last = reset($reports);
|
|
}
|
|
}
|
|
|
|
//redirect to last or guessed report
|
|
redirect($CFG->wwwroot.'/grade/report/'.$last.'/index.php?id='.$course->id);
|
|
|
|
?>
|