MDL-29892 grade: added a check to prevent hidden courses appearing on student overview reports

This commit is contained in:
Andrew Davis 2012-01-23 14:07:32 +07:00
parent 216f6d8e9d
commit 31eae0eb17

View File

@ -119,7 +119,14 @@ class grade_report_overview extends grade_report {
if (!$course->showgrades) {
continue;
}
$coursecontext = get_context_instance(CONTEXT_COURSE, $course->id);
if (!$course->visible && !has_capability('moodle/course:viewhiddencourses', $coursecontext)) {
// The course is hidden and the user isn't allowed to see it
continue;
}
$courseshortname = format_string($course->shortname, true, array('context' => $coursecontext));
$courselink = html_writer::link(new moodle_url('/grade/report/user/index.php', array('id' => $course->id, 'userid' => $this->user->id)), $courseshortname);
$canviewhidden = has_capability('moodle/grade:viewhidden', $coursecontext);