2 // This file is part of Moodle - http://moodle.org/
4 // Moodle is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU General Public License as published by
6 // the Free Software Foundation, either version 3 of the License, or
7 // (at your option) any later version.
9 // Moodle is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
14 // You should have received a copy of the GNU General Public License
15 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
18 * This page prints a review of a particular question attempt.
19 * This page is expected to only be used in a popup window.
22 * @copyright 1999 onwards Martin Dougiamas {@link http://moodle.com}
23 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
27 require_once(dirname(__FILE__
) . '/../../config.php');
28 require_once('locallib.php');
30 $attemptid = required_param('attempt', PARAM_INT
);
31 $slot = required_param('slot', PARAM_INT
);
32 $seq = optional_param('step', null, PARAM_INT
);
34 $baseurl = new moodle_url('/mod/quiz/reviewquestion.php',
35 array('attempt' => $attemptid, 'slot' => $slot));
36 $currenturl = new moodle_url($baseurl);
38 $currenturl->param('step', $seq);
40 $PAGE->set_url($currenturl);
42 $attemptobj = quiz_attempt
::create($attemptid);
45 require_login($attemptobj->get_course(), false, $attemptobj->get_cm());
46 $attemptobj->check_review_capability();
48 $accessmanager = $attemptobj->get_access_manager(time());
49 $options = $attemptobj->get_display_options(true);
51 $PAGE->set_pagelayout('popup');
52 $PAGE->set_heading($attemptobj->get_course()->fullname
);
53 $output = $PAGE->get_renderer('mod_quiz');
56 if ($attemptobj->is_own_attempt()) {
57 if (!$attemptobj->is_finished()) {
58 echo $output->review_question_not_allowed(get_string('cannotreviewopen', 'quiz'));
60 } else if (!$options->attempt
) {
61 echo $output->review_question_not_allowed(
62 $attemptobj->cannot_review_message());
66 } else if (!$attemptobj->is_review_allowed()) {
67 throw new moodle_quiz_exception($attemptobj->get_quizobj(), 'noreviewattempt');
70 // Prepare summary informat about this question attempt.
71 $summarydata = array();
74 $summarydata['quizname'] = array(
75 'title' => get_string('modulename', 'quiz'),
76 'content' => format_string($attemptobj->get_quiz_name()),
80 $summarydata['questionname'] = array(
81 'title' => get_string('question', 'quiz'),
82 'content' => $attemptobj->get_question_name($slot),
85 // Other attempts at the quiz.
86 if ($attemptobj->has_capability('mod/quiz:viewreports')) {
87 $attemptlist = $attemptobj->links_to_other_attempts($baseurl);
89 $summarydata['attemptlist'] = array(
90 'title' => get_string('attempts', 'quiz'),
91 'content' => $attemptlist,
96 // Timestamp of this action.
97 $timestamp = $attemptobj->get_question_action_time($slot);
99 $summarydata['timestamp'] = array(
100 'title' => get_string('completedon', 'quiz'),
101 'content' => userdate($timestamp),
105 echo $output->review_question_page($attemptobj, $slot, $seq,
106 $attemptobj->get_display_options(true), $summarydata);