moodle/mod/quiz/index.php
2003-01-05 14:19:20 +00:00

87 lines
2.5 KiB
PHP

<?PHP // $Id$
// This page lists all the instances of quiz in a particular course
require_once("../../config.php");
require_once("lib.php");
require_variable($id); // course
if (! $course = get_record("course", "id", $id)) {
error("Course ID is incorrect");
}
require_login($course->id);
add_to_log($course->id, "quiz", "view all", "index.php?id=$course->id", "");
// Print the header
$strquizzes = get_string("modulenameplural", "quiz");
$strquiz = get_string("modulename", "quiz");
if ($course->category) {
$navigation = "<A HREF=\"../../course/view.php?id=$course->id\">$course->shortname</A> ->";
}
print_header("$course->shortname: $strquizzes", "$course->fullname", "$navigation $strquizzes",
"", "", true, "", navmenu($course));
// Get all the appropriate data
if (! $quizzes = get_all_instances_in_course("quiz", $course->id, "cw.section ASC")) {
notice("There are no quizzes", "../../course/view.php?id=$course->id");
die;
}
// Print the list of instances (your module will probably extend this)
$timenow = time();
$strname = get_string("name");
$strweek = get_string("week");
$strtopic = get_string("topic");
$strbestgrade = get_string("bestgrade", "quiz");
if ($course->format == "weeks") {
$table->head = array ($strweek, $strname, $strbestgrade);
$table->align = array ("CENTER", "LEFT", "RIGHT");
$table->width = array (10, "*", 10);
} else if ($course->format == "topics") {
$table->head = array ($strtopic, $strname, $strbestgrade);
$table->align = array ("CENTER", "LEFT", "RIGHT");
$table->width = array (10, "*", 10);
} else {
$table->head = array ($strname, $strbestgrade);
$table->align = array ("LEFT", "RIGHT");
$table->width = array ("*", 10);
}
foreach ($quizzes as $quiz) {
$link = "<A HREF=\"view.php?id=$quiz->coursemodule\">$quiz->name</A>";
$bestgrade = quiz_get_best_grade($quiz->id, $USER->id);
if ($quiz->section) {
$section = "$quiz->section";
} else {
$section = "";
}
if ($course->format == "weeks" or $course->format == "topics") {
$table->data[] = array ($section, $link, "$bestgrade / $quiz->grade");
} else {
$table->data[] = array ($link, "$bestgrade / $quiz->grade");
}
}
echo "<BR>";
print_table($table);
// Finish the page
print_footer($course);
?>