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
|
|
|
*
|
MDL-3030 quiz overdue handling: trigger automatic state transitions.
Here, we catch all the places where a student might be accessing their
own attempts, and make sure any automatic state transitions that
should happen, do happen, before the student sees the attempt.
The places where we need to check this are view.php, startattempt.php
and processattempt.php.
We do not really need to check attempt.php or summary.php, because if
the student is on one of those pages, the JavaScript timer will
auto-submit when time expires, taking them to processattempt.php,
which will do the acutal work.
We intentionally do not trigger state transition when a teacher is
looking at a student's quiz attemp. We will trigger state transitions
on cron, but that is still to do.
Also, the body of the process_... methods still needs to be written.
2012-04-18 19:18:55 +01:00
|
|
|
* @package mod_quiz
|
|
|
|
* @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
|
|
|
|
2012-05-04 12:40:21 +01:00
|
|
|
// Look for old-style URLs, such as may be in the logs, and redirect them to startattemtp.php.
|
2012-05-11 10:49:51 +08:00
|
|
|
if ($id = optional_param('id', 0, PARAM_INT)) {
|
2011-02-04 17:41:49 +00:00
|
|
|
redirect($CFG->wwwroot . '/mod/quiz/startattempt.php?cmid=' . $id . '&sesskey=' . sesskey());
|
2012-05-11 10:49:51 +08:00
|
|
|
} else if ($qid = optional_param('q', 0, PARAM_INT)) {
|
2011-02-04 17:41:49 +00:00
|
|
|
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);
|
2012-07-27 11:42:03 +01:00
|
|
|
$page = $attemptobj->force_page_number_into_range($page);
|
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
|
|
|
|
2012-05-04 12:40:21 +01:00
|
|
|
// Check capabilities and block settings.
|
2011-02-04 17:41:49 +00:00
|
|
|
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));
|
MDL-3030 quiz overdue handling: trigger automatic state transitions.
Here, we catch all the places where a student might be accessing their
own attempts, and make sure any automatic state transitions that
should happen, do happen, before the student sees the attempt.
The places where we need to check this are view.php, startattempt.php
and processattempt.php.
We do not really need to check attempt.php or summary.php, because if
the student is on one of those pages, the JavaScript timer will
auto-submit when time expires, taking them to processattempt.php,
which will do the acutal work.
We intentionally do not trigger state transition when a teacher is
looking at a student's quiz attemp. We will trigger state transitions
on cron, but that is still to do.
Also, the body of the process_... methods still needs to be written.
2012-04-18 19:18:55 +01:00
|
|
|
} else if ($attemptobj->get_state() == quiz_attempt::OVERDUE) {
|
|
|
|
redirect($attemptobj->summary_url());
|
2011-02-04 17:41:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Check the access rules.
|
|
|
|
$accessmanager = $attemptobj->get_access_manager(time());
|
2012-07-12 18:39:01 +01:00
|
|
|
$accessmanager->setup_attempt_page($PAGE);
|
2012-09-06 17:35:40 +08:00
|
|
|
$output = $PAGE->get_renderer('mod_quiz');
|
2012-07-12 18:39:01 +01:00
|
|
|
$messages = $accessmanager->prevent_access();
|
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
|
|
|
}
|
2011-10-07 17:43:15 +01:00
|
|
|
if ($accessmanager->is_preflight_check_required($attemptobj->get_attemptid())) {
|
|
|
|
redirect($attemptobj->start_attempt_url(null, $page));
|
|
|
|
}
|
2011-02-04 17:41:49 +00:00
|
|
|
|
2013-03-28 16:57:24 +00:00
|
|
|
// Set up auto-save if required.
|
|
|
|
$autosaveperiod = get_config('quiz', 'autosaveperiod');
|
|
|
|
if ($autosaveperiod) {
|
|
|
|
$PAGE->requires->yui_module('moodle-mod_quiz-autosave',
|
|
|
|
'M.mod_quiz.autosave.init', array($autosaveperiod));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Log this page view.
|
2011-02-04 17:41:49 +00:00
|
|
|
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');
|
2012-01-08 14:14:09 -08:00
|
|
|
}
|
|
|
|
|
2012-05-04 12:40:21 +01:00
|
|
|
// Update attempt page.
|
2012-01-08 14:14:09 -08:00
|
|
|
if ($attemptobj->get_currentpage() != $page) {
|
2012-01-20 16:52:17 -08:00
|
|
|
if ($attemptobj->get_navigation_method() == QUIZ_NAVMETHOD_SEQ && $attemptobj->get_currentpage() > $page) {
|
2012-05-04 12:40:21 +01:00
|
|
|
// Prevent out of sequence access.
|
2012-01-20 16:52:17 -08:00
|
|
|
redirect($attemptobj->start_attempt_url(null, $attemptobj->get_currentpage()));
|
|
|
|
}
|
2012-07-22 12:22:28 -04:00
|
|
|
$DB->set_field('quiz_attempts', 'currentpage', $page, array('id' => $attemptid));
|
2011-02-04 17:41:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// 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());
|
|
|
|
|
2012-04-11 10:17:10 +01:00
|
|
|
// Arrange for the navigation to be displayed in the first region on the page.
|
2011-05-04 09:21:38 +01:00
|
|
|
$navbc = $attemptobj->get_navigation_panel($output, 'quiz_attempt_nav_panel', $page);
|
2012-04-11 10:17:10 +01:00
|
|
|
$regions = $PAGE->blocks->get_regions();
|
|
|
|
$PAGE->blocks->add_fake_block($navbc, reset($regions));
|
2011-02-04 17:41:49 +00:00
|
|
|
|
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);
|
|
|
|
|
|
|
|
if ($attemptobj->is_last_page($page)) {
|
|
|
|
$nextpage = -1;
|
|
|
|
} else {
|
|
|
|
$nextpage = $page + 1;
|
|
|
|
}
|
|
|
|
|
2011-09-21 15:31:12 +01:00
|
|
|
echo $output->attempt_page($attemptobj, $page, $accessmanager, $messages, $slots, $id, $nextpage);
|