From 83a23ea878e4a4aa4dccfcfe8441fd0072c0bfb5 Mon Sep 17 00:00:00 2001 From: Thanh Le Date: Mon, 15 Oct 2012 15:43:22 +0100 Subject: [PATCH] MDL-35792 question preview: way to update options without restarting. It is useful, and possible, to update the display options without restarting the question. You now only have to restart if you are changing the maximum mark or the behaviour. --- lang/en/question.php | 3 +++ question/preview.php | 6 ++++-- question/previewlib.php | 20 ++++++++++++++------ 3 files changed, 21 insertions(+), 8 deletions(-) diff --git a/lang/en/question.php b/lang/en/question.php index dfa1aeb2df3..56d1a07728e 100644 --- a/lang/en/question.php +++ b/lang/en/question.php @@ -306,6 +306,8 @@ $string['cannotloadquestion'] = 'Could not load question'; $string['cannotpreview'] = 'You can\'t preview these questions!'; $string['category'] = 'Category'; $string['changeoptions'] = 'Change options'; +$string['attemptoptions'] = 'Attempt options'; +$string['displayoptions'] = 'Display options'; $string['check'] = 'Check'; $string['clearwrongparts'] = 'Clear incorrect responses'; $string['closepreview'] = 'Close preview'; @@ -384,6 +386,7 @@ $string['requiresgrading'] = 'Requires grading'; $string['responsehistory'] = 'Response history'; $string['restart'] = 'Start again'; $string['restartwiththeseoptions'] = 'Start again with these options'; +$string['updatedisplayoptions'] = 'Update display options'; $string['rightanswer'] = 'Right answer'; $string['rightanswer_help'] = 'an automatically generated summary of the correct response. This can be limited, so you may wish to consider explaining the correct solution in the general feedback for the question, and turning this option off.'; $string['saved'] = 'Saved: {$a}'; diff --git a/question/preview.php b/question/preview.php index b8a83ed5c4b..7287a5cb154 100644 --- a/question/preview.php +++ b/question/preview.php @@ -124,7 +124,7 @@ $options->behaviour = $quba->get_preferred_behaviour(); $options->maxmark = $quba->get_question_max_mark($slot); // Create the settings form, and initialise the fields. -$optionsform = new preview_options_form(question_preview_form_url($question->id, $context), +$optionsform = new preview_options_form(question_preview_form_url($question->id, $context, $previewid), array('quba' => $quba, 'maxvariant' => $maxvariant)); $optionsform->set_data($options); @@ -135,7 +135,9 @@ if ($newoptions = $optionsform->get_submitted_data()) { if (!isset($newoptions->variant)) { $newoptions->variant = $options->variant; } - restart_preview($previewid, $question->id, $newoptions, $context); + if (isset($newoptions->saverestart)) { + restart_preview($previewid, $question->id, $newoptions, $context); + } } // Prepare a URL that is used in various places. diff --git a/question/previewlib.php b/question/previewlib.php index 515e035023a..4f8970bafbf 100644 --- a/question/previewlib.php +++ b/question/previewlib.php @@ -44,7 +44,7 @@ class preview_options_form extends moodleform { question_display_options::VISIBLE => get_string('shown', 'question'), ); - $mform->addElement('header', 'optionsheader', get_string('changeoptions', 'question')); + $mform->addElement('header', 'optionsheader', get_string('attemptoptions', 'question')); $behaviours = question_engine::get_behaviour_options( $this->_customdata['quba']->get_preferred_behaviour()); @@ -56,6 +56,11 @@ class preview_options_form extends moodleform { array('size' => '5')); $mform->setType('maxmark', PARAM_FLOAT); + $mform->addElement('submit', 'saverestart', + get_string('restartwiththeseoptions', 'question')); + + $mform->addElement('header', 'optionsheader', get_string('displayoptions', 'question')); + if ($this->_customdata['maxvariant'] > 1) { $variants = range(1, $this->_customdata['maxvariant']); $mform->addElement('select', 'variant', get_string('questionvariant', 'question'), @@ -88,8 +93,8 @@ class preview_options_form extends moodleform { $mform->addElement('select', 'history', get_string('responsehistory', 'question'), $hiddenofvisible); - $mform->addElement('submit', 'submit', - get_string('restartwiththeseoptions', 'question')); + $mform->addElement('submit', 'saveupdate', + get_string('updatedisplayoptions', 'question')); } } @@ -286,10 +291,10 @@ function question_preview_action_url($questionid, $qubaid, /** * The the URL to use for actions relating to this preview. * @param int $questionid the question being previewed. - * @param int $qubaid the id of the question usage for this preview. - * @param question_preview_options $options the options in use. + * @param context $context the current moodle context. + * @param int $previewid optional previewid to sign post saved previewed answers. */ -function question_preview_form_url($questionid, $context) { +function question_preview_form_url($questionid, $context, $previewid = null) { $params = array( 'id' => $questionid, ); @@ -298,6 +303,9 @@ function question_preview_form_url($questionid, $context) { } else if ($context->contextlevel == CONTEXT_COURSE) { $params['courseid'] = $context->instanceid; } + if ($previewid) { + $params['previewid'] = $previewid; + } return new moodle_url('/question/preview.php', $params); }