moodle/mod/quiz/index.php
2006-11-19 21:28:15 +00:00

148 lines
5.3 KiB
PHP

<?php // $Id$
/**
* This page lists all the instances of quiz in a particular course
*
* @version $Id$
* @author Martin Dougiamas and many others.
* @license http://www.gnu.org/copyleft/gpl.html GNU Public License
* @package quiz
*/
require_once("../../config.php");
require_once("locallib.php");
$id = required_param('id', PARAM_INT);
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");
$streditquestions = has_capability('moodle/question:manage', get_context_instance(CONTEXT_COURSE, $course->id))
? "<form target=\"_parent\" method=\"get\" "
." action=\"$CFG->wwwroot/question/edit.php\">"
."<input type=\"hidden\" name=\"courseid\" "
." value=\"$course->id\" />"
."<input type=\"submit\" "
." value=\"".get_string("editquestions", "quiz")."\" /></form>"
: "";
$strquiz = get_string("modulename", "quiz");
print_header_simple("$strquizzes", "", "$strquizzes",
"", "", true, $streditquestions, navmenu($course));
// Get all the appropriate data
if (! $quizzes = get_all_instances_in_course("quiz", $course)) {
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");
$strquizcloses = get_string("quizcloses", "quiz");
$strattempts = get_string("attempts", "quiz");
$strusers = $course->students;
$context = get_context_instance(CONTEXT_COURSE, $id);
if (has_capability('mod/quiz:viewreports', $context)) {
$gradecol = $strattempts;
} else {
$gradecol = $strbestgrade;
}
if ($course->format == "weeks") {
$table->head = array ($strweek, $strname, $strquizcloses, $gradecol);
$table->align = array ("center", "left", "left", "left");
$table->size = array (10, "", "", "");
} else if ($course->format == "topics") {
$table->head = array ($strtopic, $strname, $strquizcloses, $gradecol);
$table->align = array ("center", "left", "left", "left");
$table->size = array (10, "", "", "");
} else {
$table->head = array ($strname, $strquizcloses, $gradecol);
$table->align = array ("left", "left", "left");
$table->size = array ("", "", "");
}
$currentsection = "";
foreach ($quizzes as $quiz) {
$cm = get_coursemodule_from_instance('quiz', $quiz->id);
$context = get_context_instance(CONTEXT_MODULE, $cm->id);
if (!$quiz->visible) {
//Show dimmed if the mod is hidden
$link = "<a class=\"dimmed\" href=\"view.php?id=$quiz->coursemodule\">".format_string($quiz->name,true)."</a>";
} else {
//Show normal if the mod is visible
$link = "<a href=\"view.php?id=$quiz->coursemodule\">".format_string($quiz->name,true)."</a>";
}
$bestgrade = quiz_get_best_grade($quiz, $USER->id);
$printsection = "";
if ($quiz->section !== $currentsection) {
if ($quiz->section) {
$printsection = $quiz->section;
}
if ($currentsection !== "") {
$table->data[] = 'hr';
}
$currentsection = $quiz->section;
}
$closequiz = $quiz->timeclose ? userdate($quiz->timeclose) : '';
$gradecol = '';
$feedbackcol = '';
if (has_capability('mod/quiz:viewreports', $context)) {
if ($a->attemptnum = count_records('quiz_attempts', 'quiz', $quiz->id, 'preview', 0)) {
$a->studentnum = count_records_select('quiz_attempts', "quiz = '$quiz->id' AND preview = '0'", 'COUNT(DISTINCT userid)');
$a->studentstring = $course->students;
$gradecol = "<a href=\"report.php?mode=overview&amp;q=$quiz->id\">".get_string('numattempts', 'quiz', $a).'</a>';
}
} else {
// If student has no grade for this quiz,
// or the quiz has no grade, display nothing in grade col
if ($bestgrade !== NULL && $quiz->grade != 0) {
//If all quiz's attempts have visible results, show bestgrade
if (all_attempt_results_visible($quiz, $USER)) {
$gradecol = "$bestgrade / $quiz->grade";
$feedbackcol = quiz_feedback_for_grade($bestgrade, $quiz->id);
}
}
}
if ($course->format == "weeks" or $course->format == "topics") {
$table->data[] = array ($printsection, $link, $closequiz, $gradecol, $feedbackcol);
} else {
$table->data[] = array ($link, $closequiz, $gradecol, $feedbackcol);
}
}
echo '<br />';
print_table($table);
// Finish the page
print_footer($course);
?>