moodle/mod/quiz/report.php
2003-11-20 16:01:21 +00:00

110 lines
3.3 KiB
PHP

<?PHP // $Id$
// This script uses installed report plugins to print quiz reports
require_once("../../config.php");
require_once("lib.php");
optional_variable($id); // Course Module ID, or
optional_variable($q); // quiz ID
optional_variable($mode, "overview"); // Report mode
if ($id) {
if (! $cm = get_record("course_modules", "id", $id)) {
error("Course Module ID was incorrect");
}
if (! $course = get_record("course", "id", $cm->course)) {
error("Course is misconfigured");
}
if (! $quiz = get_record("quiz", "id", $cm->instance)) {
error("Course module is incorrect");
}
} else {
if (! $quiz = get_record("quiz", "id", $q)) {
error("Course module is incorrect");
}
if (! $course = get_record("course", "id", $quiz->course)) {
error("Course is misconfigured");
}
if (! $cm = get_coursemodule_from_instance("quiz", $quiz->id, $course->id)) {
error("Course Module ID was incorrect");
}
}
require_login($course->id);
if (!isteacher($course->id)) {
error("You are not allowed to use this script");
}
add_to_log($course->id, "quiz", "report", "report.php?id=$cm->id", "$quiz->id");
/// Print the page header
if (empty($noheader)) {
if ($course->category) {
$navigation = "<a href=\"../../course/view.php?id=$course->id\">$course->shortname</a> ->";
}
$strquizzes = get_string("modulenameplural", "quiz");
$strquiz = get_string("modulename", "quiz");
$strreport = get_string("report", "quiz");
print_header("$course->shortname: $quiz->name", "$course->fullname",
"$navigation <A HREF=index.php?id=$course->id>$strquizzes</A>
-> <a href=\"view.php?id=$cm->id\">$quiz->name</a> -> $strreport",
"", "", true);
print_heading($quiz->name);
/// Print list of available quiz reports
$allreports = get_list_of_plugins("mod/quiz/report");
$reportlist = array ("overview", "regrade"); // Standard reports we want to show first
foreach ($allreports as $report) {
if (!in_array($report, $reportlist)) {
$reportlist[] = $report;
}
}
echo "<table cellpadding=10 align=center><tr>";
foreach ($reportlist as $report) {
$strreport = get_string("report$report", "quiz");
if ($report == $mode) {
echo "<td><u>$strreport</u></td>";
} else {
echo "<td><a href=\"report.php?id=$cm->id&mode=$report\">$strreport</a></td>";
}
}
echo "</tr></table><hr size=\"1\" noshade=\"noshade\" />";
}
/// Open the selected quiz report and display it
if (! is_readable("report/$mode/report.php")) {
error("Report not known ($mode)");
}
include("report/default.php"); // Parent class
include("report/$mode/report.php");
$report = new quiz_report();
if (! $report->display($quiz, $cm, $course)) { // Run the report!
error("Error occurred during pre-processing!");
}
if (empty($noheader)) {
print_footer($course);
}
?>