*/
protected $preferredbehaviour = null;
- /** @var object the context this usage belongs to. */
+ /** @var context the context this usage belongs to. */
protected $context;
/** @var string plugin name of the plugin this usage belongs to. */
return $this->preferredbehaviour;
}
- /** @return object the context this usage belongs to. */
+ /** @return context the context this usage belongs to. */
public function get_owning_context() {
return $this->context;
}
$PAGE->set_url(question_preview_url($id, $options->behaviour, $options->maxmark,
$options, $options->variant, $context));
-// Get and validate exitsing preview, or start a new one.
+// Get and validate existing preview, or start a new one.
$previewid = optional_param('previewid', 0, PARAM_INT);
if ($previewid) {
- if (!isset($SESSION->question_previews[$previewid])) {
- print_error('notyourpreview', 'question');
- }
-
try {
$quba = question_engine::load_questions_usage_by_activity($previewid);
$options->maxmark, $options, $options->variant, $context), null, $e);
}
+ if ($quba->get_owning_context()->instanceid != $USER->id) {
+ print_error('notyourpreview', 'question');
+ }
+
$slot = $quba->get_first_question_number();
$usedquestion = $quba->get_question($slot);
if ($usedquestion->id != $question->id) {
} else {
$quba = question_engine::make_questions_usage_by_activity(
- 'core_question_preview', $context);
+ 'core_question_preview', context_user::instance($USER->id));
$quba->set_preferred_behaviour($options->behaviour);
$slot = $quba->add_question($question, $options->maxmark);
$transaction = $DB->start_delegated_transaction();
question_engine::save_questions_usage_by_activity($quba);
$transaction->allow_commit();
-
- $SESSION->question_previews[$quba->get_id()] = true;
}
$options->behaviour = $quba->get_preferred_behaviour();
$options->maxmark = $quba->get_question_max_mark($slot);