Merge branch 'MDL-33122-master' of git://github.com/ankitagarwal/moodle
[moodle.git] / question / previewlib.php
blobc3ffc191c30bc4a8080c54d3fdb5451061144581
1 <?php
2 // This file is part of Moodle - http://moodle.org/
3 //
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.
8 //
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/>.
17 /**
18 * Library functions used by question/preview.php.
20 * @package moodlecore
21 * @subpackage questionengine
22 * @copyright 2010 The Open University
23 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
27 defined('MOODLE_INTERNAL') || die();
29 require_once($CFG->libdir . '/formslib.php');
32 /**
33 * Settings form for the preview options.
35 * @copyright 2009 The Open University
36 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
38 class preview_options_form extends moodleform {
39 public function definition() {
40 $mform = $this->_form;
42 $hiddenofvisible = array(
43 question_display_options::HIDDEN => get_string('notshown', 'question'),
44 question_display_options::VISIBLE => get_string('shown', 'question'),
47 $mform->addElement('header', 'optionsheader', get_string('changeoptions', 'question'));
49 $behaviours = question_engine::get_behaviour_options(
50 $this->_customdata['quba']->get_preferred_behaviour());
51 $mform->addElement('select', 'behaviour',
52 get_string('howquestionsbehave', 'question'), $behaviours);
53 $mform->addHelpButton('behaviour', 'howquestionsbehave', 'question');
55 $mform->addElement('text', 'maxmark', get_string('markedoutof', 'question'),
56 array('size' => '5'));
57 $mform->setType('maxmark', PARAM_FLOAT);
59 if ($this->_customdata['maxvariant'] > 1) {
60 $variants = range(1, $this->_customdata['maxvariant']);
61 $mform->addElement('select', 'variant', get_string('questionvariant', 'question'),
62 array_combine($variants, $variants));
64 $mform->setType('variant', PARAM_INT);
66 $mform->addElement('select', 'correctness', get_string('whethercorrect', 'question'),
67 $hiddenofvisible);
69 $marksoptions = array(
70 question_display_options::HIDDEN => get_string('notshown', 'question'),
71 question_display_options::MAX_ONLY => get_string('showmaxmarkonly', 'question'),
72 question_display_options::MARK_AND_MAX => get_string('showmarkandmax', 'question'),
74 $mform->addElement('select', 'marks', get_string('marks', 'question'), $marksoptions);
76 $mform->addElement('select', 'markdp', get_string('decimalplacesingrades', 'question'),
77 question_engine::get_dp_options());
79 $mform->addElement('select', 'feedback',
80 get_string('specificfeedback', 'question'), $hiddenofvisible);
82 $mform->addElement('select', 'generalfeedback',
83 get_string('generalfeedback', 'question'), $hiddenofvisible);
85 $mform->addElement('select', 'rightanswer',
86 get_string('rightanswer', 'question'), $hiddenofvisible);
88 $mform->addElement('select', 'history',
89 get_string('responsehistory', 'question'), $hiddenofvisible);
91 $mform->addElement('submit', 'submit',
92 get_string('restartwiththeseoptions', 'question'));
97 /**
98 * Displays question preview options as default and set the options
99 * Setting default, getting and setting user preferences in question preview options.
101 * @copyright 2010 The Open University
102 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
104 class question_preview_options extends question_display_options {
105 /** @var string the behaviour to use for this preview. */
106 public $behaviour;
108 /** @var number the maximum mark to use for this preview. */
109 public $maxmark;
111 /** @var int the variant of the question to preview. */
112 public $variant;
114 /** @var string prefix to append to field names to get user_preference names. */
115 const OPTIONPREFIX = 'question_preview_options_';
118 * Constructor.
120 public function __construct($question) {
121 global $CFG;
122 $this->behaviour = 'deferredfeedback';
123 $this->maxmark = $question->defaultmark;
124 $this->variant = null;
125 $this->correctness = self::VISIBLE;
126 $this->marks = self::MARK_AND_MAX;
127 $this->markdp = get_config('quiz', 'decimalpoints');
128 $this->feedback = self::VISIBLE;
129 $this->numpartscorrect = $this->feedback;
130 $this->generalfeedback = self::VISIBLE;
131 $this->rightanswer = self::VISIBLE;
132 $this->history = self::HIDDEN;
133 $this->flags = self::HIDDEN;
134 $this->manualcomment = self::HIDDEN;
138 * @return array names of the options we store in the user preferences table.
140 protected function get_user_pref_fields() {
141 return array('behaviour', 'correctness', 'marks', 'markdp', 'feedback',
142 'generalfeedback', 'rightanswer', 'history');
146 * @return array names and param types of the options we read from the request.
148 protected function get_field_types() {
149 return array(
150 'behaviour' => PARAM_ALPHA,
151 'maxmark' => PARAM_NUMBER,
152 'variant' => PARAM_INT,
153 'correctness' => PARAM_BOOL,
154 'marks' => PARAM_INT,
155 'markdp' => PARAM_INT,
156 'feedback' => PARAM_BOOL,
157 'generalfeedback' => PARAM_BOOL,
158 'rightanswer' => PARAM_BOOL,
159 'history' => PARAM_BOOL,
164 * Load the value of the options from the user_preferences table.
166 public function load_user_defaults() {
167 foreach ($this->get_user_pref_fields() as $field) {
168 $this->$field = get_user_preferences(
169 self::OPTIONPREFIX . $field, $this->$field);
171 $this->numpartscorrect = $this->feedback;
175 * Save a change to the user's preview options to the database.
176 * @param object $newoptions
178 public function save_user_preview_options($newoptions) {
179 foreach ($this->get_user_pref_fields() as $field) {
180 if (isset($newoptions->$field)) {
181 set_user_preference(self::OPTIONPREFIX . $field, $newoptions->$field);
187 * Set the value of any fields included in the request.
189 public function set_from_request() {
190 foreach ($this->get_field_types() as $field => $type) {
191 $this->$field = optional_param($field, $this->$field, $type);
193 $this->numpartscorrect = $this->feedback;
197 * @return string URL fragment. Parameters needed in the URL when continuing
198 * this preview.
200 public function get_url_params() {
201 $params = array();
202 foreach ($this->get_field_types() as $field => $notused) {
203 if ($field == 'behaviour' || $field == 'maxmark' || is_null($this->$field)) {
204 continue;
206 $params[$field] = $this->$field;
208 return $params;
214 * Called via pluginfile.php -> question_pluginfile to serve files belonging to
215 * a question in a question_attempt when that attempt is a preview.
217 * @package core_question
218 * @category files
219 * @param stdClass $course course settings object
220 * @param stdClass $context context object
221 * @param string $component the name of the component we are serving files for.
222 * @param string $filearea the name of the file area.
223 * @param int $qubaid the question_usage this image belongs to.
224 * @param int $slot the relevant slot within the usage.
225 * @param array $args the remaining bits of the file path.
226 * @param bool $forcedownload whether the user must be forced to download the file.
227 * @param array $options additional options affecting the file serving
228 * @return bool false if file not found, does not return if found - justsend the file
230 function question_preview_question_pluginfile($course, $context, $component,
231 $filearea, $qubaid, $slot, $args, $forcedownload, $options) {
232 global $USER, $DB, $CFG;
234 $quba = question_engine::load_questions_usage_by_activity($qubaid);
236 if (!question_has_capability_on($quba->get_question($slot), 'use')) {
237 send_file_not_found();
240 $options = new question_display_options();
241 $options->feedback = question_display_options::VISIBLE;
242 $options->numpartscorrect = question_display_options::VISIBLE;
243 $options->generalfeedback = question_display_options::VISIBLE;
244 $options->rightanswer = question_display_options::VISIBLE;
245 $options->manualcomment = question_display_options::VISIBLE;
246 $options->history = question_display_options::VISIBLE;
247 if (!$quba->check_file_access($slot, $options, $component,
248 $filearea, $args, $forcedownload)) {
249 send_file_not_found();
252 $fs = get_file_storage();
253 $relativepath = implode('/', $args);
254 $fullpath = "/$context->id/$component/$filearea/$relativepath";
255 if (!$file = $fs->get_file_by_hash(sha1($fullpath)) or $file->is_directory()) {
256 send_file_not_found();
259 send_stored_file($file, 0, 0, $forcedownload, $options);
263 * The the URL to use for actions relating to this preview.
264 * @param int $questionid the question being previewed.
265 * @param int $qubaid the id of the question usage for this preview.
266 * @param question_preview_options $options the options in use.
268 function question_preview_action_url($questionid, $qubaid,
269 question_preview_options $options, $context) {
270 $params = array(
271 'id' => $questionid,
272 'previewid' => $qubaid,
274 if ($context->contextlevel == CONTEXT_MODULE) {
275 $params['cmid'] = $context->instanceid;
276 } else if ($context->contextlevel == CONTEXT_COURSE) {
277 $params['courseid'] = $context->instanceid;
279 $params = array_merge($params, $options->get_url_params());
280 return new moodle_url('/question/preview.php', $params);
284 * The the URL to use for actions relating to this preview.
285 * @param int $questionid the question being previewed.
286 * @param int $qubaid the id of the question usage for this preview.
287 * @param question_preview_options $options the options in use.
289 function question_preview_form_url($questionid, $context) {
290 $params = array(
291 'id' => $questionid,
293 if ($context->contextlevel == CONTEXT_MODULE) {
294 $params['cmid'] = $context->instanceid;
295 } else if ($context->contextlevel == CONTEXT_COURSE) {
296 $params['courseid'] = $context->instanceid;
298 return new moodle_url('/question/preview.php', $params);
302 * Delete the current preview, if any, and redirect to start a new preview.
303 * @param int $previewid
304 * @param int $questionid
305 * @param object $displayoptions
306 * @param object $context
308 function restart_preview($previewid, $questionid, $displayoptions, $context) {
309 global $DB;
311 if ($previewid) {
312 $transaction = $DB->start_delegated_transaction();
313 question_engine::delete_questions_usage_by_activity($previewid);
314 $transaction->allow_commit();
316 redirect(question_preview_url($questionid, $displayoptions->behaviour,
317 $displayoptions->maxmark, $displayoptions, $displayoptions->variant, $context));