2009-11-04 11:58:30 +00:00
|
|
|
<?php
|
2011-02-04 17:41:49 +00:00
|
|
|
// This file is part of Moodle - http://moodle.org/
|
|
|
|
//
|
|
|
|
// Moodle is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// Moodle is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2005-05-06 06:24:04 +00:00
|
|
|
/**
|
2011-02-04 17:41:49 +00:00
|
|
|
* This script displays a particular page of a quiz attempt that is in progress.
|
2007-11-07 12:35:33 +00:00
|
|
|
*
|
2011-02-21 16:13:25 +00:00
|
|
|
* @package mod
|
2011-02-04 17:41:49 +00:00
|
|
|
* @subpackage quiz
|
2011-02-21 16:13:25 +00:00
|
|
|
* @copyright 1999 onwards Martin Dougiamas {@link http://moodle.com}
|
|
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
2007-11-07 12:35:33 +00:00
|
|
|
*/
|
2002-10-06 03:24:56 +00:00
|
|
|
|
2011-02-04 17:41:49 +00:00
|
|
|
require_once(dirname(__FILE__) . '/../../config.php');
|
|
|
|
require_once($CFG->dirroot . '/mod/quiz/locallib.php');
|
2005-05-06 06:24:04 +00:00
|
|
|
|
2011-02-04 17:41:49 +00:00
|
|
|
// Look for old-style URLs, such as may be in the logs, and redirect them to startattemtp.php
|
|
|
|
if ($id = optional_param('id', 0, PARAM_INTEGER)) {
|
|
|
|
redirect($CFG->wwwroot . '/mod/quiz/startattempt.php?cmid=' . $id . '&sesskey=' . sesskey());
|
|
|
|
} else if ($qid = optional_param('q', 0, PARAM_INTEGER)) {
|
|
|
|
if (!$cm = get_coursemodule_from_instance('quiz', $qid)) {
|
|
|
|
print_error('invalidquizid', 'quiz');
|
2009-09-16 05:15:22 +00:00
|
|
|
}
|
2011-04-04 20:11:29 +01:00
|
|
|
redirect(new moodle_url('/mod/quiz/startattempt.php',
|
|
|
|
array('cmid' => $cm->id, 'sesskey' => sesskey())));
|
2011-02-04 17:41:49 +00:00
|
|
|
}
|
2009-09-16 05:15:22 +00:00
|
|
|
|
2011-02-04 17:41:49 +00:00
|
|
|
// Get submitted parameters.
|
|
|
|
$attemptid = required_param('attempt', PARAM_INT);
|
|
|
|
$page = optional_param('page', 0, PARAM_INT);
|
2002-10-06 03:24:56 +00:00
|
|
|
|
2011-02-04 17:41:49 +00:00
|
|
|
$attemptobj = quiz_attempt::create($attemptid);
|
2011-08-17 14:40:05 +01:00
|
|
|
$PAGE->set_url($attemptobj->attempt_url(null, $page));
|
2007-09-20 15:14:24 +00:00
|
|
|
|
2011-02-04 17:41:49 +00:00
|
|
|
// Check login.
|
|
|
|
require_login($attemptobj->get_course(), false, $attemptobj->get_cm());
|
2010-08-05 18:15:17 +00:00
|
|
|
|
2011-02-04 17:41:49 +00:00
|
|
|
// Check that this attempt belongs to this user.
|
|
|
|
if ($attemptobj->get_userid() != $USER->id) {
|
|
|
|
if ($attemptobj->has_capability('mod/quiz:viewreports')) {
|
2011-08-25 10:50:00 +01:00
|
|
|
redirect($attemptobj->review_url(null, $page));
|
2007-04-10 14:27:56 +00:00
|
|
|
} else {
|
2011-02-04 17:41:49 +00:00
|
|
|
throw new moodle_quiz_exception($attemptobj->get_quizobj(), 'notyourattempt');
|
2004-08-23 12:35:13 +00:00
|
|
|
}
|
2011-02-04 17:41:49 +00:00
|
|
|
}
|
2002-10-13 07:17:48 +00:00
|
|
|
|
2011-02-04 17:41:49 +00:00
|
|
|
// Check capabilities and block settings
|
|
|
|
if (!$attemptobj->is_preview_user()) {
|
|
|
|
$attemptobj->require_capability('mod/quiz:attempt');
|
|
|
|
if (empty($attemptobj->get_quiz()->showblocks)) {
|
|
|
|
$PAGE->blocks->show_only_fake_blocks();
|
2003-08-03 23:00:45 +00:00
|
|
|
}
|
2005-05-06 06:24:04 +00:00
|
|
|
|
2011-02-04 17:41:49 +00:00
|
|
|
} else {
|
|
|
|
navigation_node::override_active_url($attemptobj->start_attempt_url());
|
|
|
|
}
|
|
|
|
|
|
|
|
// If the attempt is already closed, send them to the review page.
|
|
|
|
if ($attemptobj->is_finished()) {
|
2011-08-25 10:50:00 +01:00
|
|
|
redirect($attemptobj->review_url(null, $page));
|
2011-02-04 17:41:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Check the access rules.
|
|
|
|
$accessmanager = $attemptobj->get_access_manager(time());
|
|
|
|
$messages = $accessmanager->prevent_access();
|
2011-04-27 16:25:27 +01:00
|
|
|
$output = $PAGE->get_renderer('mod_quiz');
|
2011-02-04 17:41:49 +00:00
|
|
|
if (!$attemptobj->is_preview_user() && $messages) {
|
2011-04-27 16:43:48 +01:00
|
|
|
print_error('attempterror', 'quiz', $attemptobj->view_url(),
|
2011-05-03 09:36:08 +01:00
|
|
|
$output->access_messages($messages));
|
2011-02-04 17:41:49 +00:00
|
|
|
}
|
|
|
|
$accessmanager->do_password_check($attemptobj->is_preview_user());
|
|
|
|
|
|
|
|
add_to_log($attemptobj->get_courseid(), 'quiz', 'continue attempt',
|
|
|
|
'review.php?attempt=' . $attemptobj->get_attemptid(),
|
|
|
|
$attemptobj->get_quizid(), $attemptobj->get_cmid());
|
|
|
|
|
|
|
|
// Get the list of questions needed by this page.
|
2011-02-08 14:19:23 +00:00
|
|
|
$slots = $attemptobj->get_slots($page);
|
2011-02-04 17:41:49 +00:00
|
|
|
|
|
|
|
// Check.
|
|
|
|
if (empty($slots)) {
|
|
|
|
throw new moodle_quiz_exception($attemptobj->get_quizobj(), 'noquestionsfound');
|
|
|
|
}
|
|
|
|
|
|
|
|
// Initialise the JavaScript.
|
|
|
|
$headtags = $attemptobj->get_html_head_contributions($page);
|
|
|
|
$PAGE->requires->js_init_call('M.mod_quiz.init_attempt_form', null, false, quiz_get_js_module());
|
|
|
|
|
|
|
|
// Arrange for the navigation to be displayed.
|
2011-05-04 09:21:38 +01:00
|
|
|
$navbc = $attemptobj->get_navigation_panel($output, 'quiz_attempt_nav_panel', $page);
|
2011-02-04 17:41:49 +00:00
|
|
|
$firstregion = reset($PAGE->blocks->get_regions());
|
|
|
|
$PAGE->blocks->add_fake_block($navbc, $firstregion);
|
|
|
|
|
2011-04-27 13:31:41 +01:00
|
|
|
$title = get_string('attempt', 'quiz', $attemptobj->get_attempt_number());
|
|
|
|
$headtags = $attemptobj->get_html_head_contributions($page);
|
2011-10-05 20:58:38 +01:00
|
|
|
$PAGE->set_title(format_string($attemptobj->get_quiz_name()));
|
2011-04-27 13:31:41 +01:00
|
|
|
$PAGE->set_heading($attemptobj->get_course()->fullname);
|
2011-10-05 20:58:38 +01:00
|
|
|
$accessmanager->setup_attempt_page($PAGE);
|
2011-04-27 13:31:41 +01:00
|
|
|
|
|
|
|
if ($attemptobj->is_last_page($page)) {
|
|
|
|
$nextpage = -1;
|
|
|
|
} else {
|
|
|
|
$nextpage = $page + 1;
|
|
|
|
}
|
|
|
|
|
2011-10-05 20:58:38 +01:00
|
|
|
$accessmanager->show_attempt_timer_if_needed($attemptobj->get_attempt(), time(), $output);
|
2011-09-21 15:31:12 +01:00
|
|
|
echo $output->attempt_page($attemptobj, $page, $accessmanager, $messages, $slots, $id, $nextpage);
|