Merge branch 'MDL-29569' of git://github.com/rwijaya/moodle
[moodle.git] / lib / questionlib.php
blob36327077d0325e2678ff7775151437cdfe3692ae
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 * Code for handling and processing questions
20 * This is code that is module independent, i.e., can be used by any module that
21 * uses questions, like quiz, lesson, ..
22 * This script also loads the questiontype classes
23 * Code for handling the editing of questions is in {@link question/editlib.php}
25 * TODO: separate those functions which form part of the API
26 * from the helper functions.
28 * @package moodlecore
29 * @subpackage questionbank
30 * @copyright 1999 onwards Martin Dougiamas and others {@link http://moodle.com}
31 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
35 defined('MOODLE_INTERNAL') || die();
37 require_once($CFG->dirroot . '/question/engine/lib.php');
38 require_once($CFG->dirroot . '/question/type/questiontypebase.php');
42 /// CONSTANTS ///////////////////////////////////
44 /**
45 * Constant determines the number of answer boxes supplied in the editing
46 * form for multiple choice and similar question types.
48 define("QUESTION_NUMANS", 10);
50 /**
51 * Constant determines the number of answer boxes supplied in the editing
52 * form for multiple choice and similar question types to start with, with
53 * the option of adding QUESTION_NUMANS_ADD more answers.
55 define("QUESTION_NUMANS_START", 3);
57 /**
58 * Constant determines the number of answer boxes to add in the editing
59 * form for multiple choice and similar question types when the user presses
60 * 'add form fields button'.
62 define("QUESTION_NUMANS_ADD", 3);
64 /**
65 * Move one question type in a list of question types. If you try to move one element
66 * off of the end, nothing will change.
68 * @param array $sortedqtypes An array $qtype => anything.
69 * @param string $tomove one of the keys from $sortedqtypes
70 * @param integer $direction +1 or -1
71 * @return array an array $index => $qtype, with $index from 0 to n in order, and
72 * the $qtypes in the same order as $sortedqtypes, except that $tomove will
73 * have been moved one place.
75 function question_reorder_qtypes($sortedqtypes, $tomove, $direction) {
76 $neworder = array_keys($sortedqtypes);
77 // Find the element to move.
78 $key = array_search($tomove, $neworder);
79 if ($key === false) {
80 return $neworder;
82 // Work out the other index.
83 $otherkey = $key + $direction;
84 if (!isset($neworder[$otherkey])) {
85 return $neworder;
87 // Do the swap.
88 $swap = $neworder[$otherkey];
89 $neworder[$otherkey] = $neworder[$key];
90 $neworder[$key] = $swap;
91 return $neworder;
94 /**
95 * Save a new question type order to the config_plugins table.
96 * @global object
97 * @param $neworder An arra $index => $qtype. Indices should start at 0 and be in order.
98 * @param $config get_config('question'), if you happen to have it around, to save one DB query.
100 function question_save_qtype_order($neworder, $config = null) {
101 global $DB;
103 if (is_null($config)) {
104 $config = get_config('question');
107 foreach ($neworder as $index => $qtype) {
108 $sortvar = $qtype . '_sortorder';
109 if (!isset($config->$sortvar) || $config->$sortvar != $index + 1) {
110 set_config($sortvar, $index + 1, 'question');
115 /// FUNCTIONS //////////////////////////////////////////////////////
118 * Returns an array of names of activity modules that use this question
120 * @deprecated since Moodle 2.1. Use {@link questions_in_use} instead.
122 * @param object $questionid
123 * @return array of strings
125 function question_list_instances($questionid) {
126 throw new coding_exception('question_list_instances has been deprectated. ' .
127 'Please use questions_in_use instead.');
131 * @param array $questionids of question ids.
132 * @return boolean whether any of these questions are being used by any part of Moodle.
134 function questions_in_use($questionids) {
135 global $CFG;
137 if (question_engine::questions_in_use($questionids)) {
138 return true;
141 foreach (get_plugin_list('mod') as $module => $path) {
142 $lib = $path . '/lib.php';
143 if (is_readable($lib)) {
144 include_once($lib);
146 $fn = $module . '_questions_in_use';
147 if (function_exists($fn)) {
148 if ($fn($questionids)) {
149 return true;
151 } else {
153 // Fallback for legacy modules.
154 $fn = $module . '_question_list_instances';
155 if (function_exists($fn)) {
156 foreach ($questionids as $questionid) {
157 $instances = $fn($questionid);
158 if (!empty($instances)) {
159 return true;
167 return false;
171 * Determine whether there arey any questions belonging to this context, that is whether any of its
172 * question categories contain any questions. This will return true even if all the questions are
173 * hidden.
175 * @param mixed $context either a context object, or a context id.
176 * @return boolean whether any of the question categories beloning to this context have
177 * any questions in them.
179 function question_context_has_any_questions($context) {
180 global $DB;
181 if (is_object($context)) {
182 $contextid = $context->id;
183 } else if (is_numeric($context)) {
184 $contextid = $context;
185 } else {
186 print_error('invalidcontextinhasanyquestions', 'question');
188 return $DB->record_exists_sql("SELECT *
189 FROM {question} q
190 JOIN {question_categories} qc ON qc.id = q.category
191 WHERE qc.contextid = ? AND q.parent = 0", array($contextid));
195 * Returns list of 'allowed' grades for grade selection
196 * formatted suitably for dropdown box function
198 * @deprecated since 2.1. Use {@link question_bank::fraction_options()} or
199 * {@link question_bank::fraction_options_full()} instead.
201 * @return object ->gradeoptionsfull full array ->gradeoptions +ve only
203 function get_grade_options() {
204 $grades = new stdClass();
205 $grades->gradeoptions = question_bank::fraction_options();
206 $grades->gradeoptionsfull = question_bank::fraction_options_full();
208 return $grades;
212 * match grade options
213 * if no match return error or match nearest
214 * @param array $gradeoptionsfull list of valid options
215 * @param int $grade grade to be tested
216 * @param string $matchgrades 'error' or 'nearest'
217 * @return mixed either 'fixed' value or false if erro
219 function match_grade_options($gradeoptionsfull, $grade, $matchgrades='error') {
220 if ($matchgrades == 'error') {
221 // if we just need an error...
222 foreach ($gradeoptionsfull as $value => $option) {
223 // slightly fuzzy test, never check floats for equality :-)
224 if (abs($grade - $value) < 0.00001) {
225 return $grade;
228 // didn't find a match so that's an error
229 return false;
230 } else if ($matchgrades == 'nearest') {
231 // work out nearest value
232 $hownear = array();
233 foreach ($gradeoptionsfull as $value => $option) {
234 if ($grade==$value) {
235 return $grade;
237 $hownear[ $value ] = abs( $grade - $value );
239 // reverse sort list of deltas and grab the last (smallest)
240 asort( $hownear, SORT_NUMERIC );
241 reset( $hownear );
242 return key( $hownear );
243 } else {
244 return false;
249 * @deprecated Since Moodle 2.1. Use {@link question_category_in_use} instead.
250 * @param integer $categoryid a question category id.
251 * @param boolean $recursive whether to check child categories too.
252 * @return boolean whether any question in this category is in use.
254 function question_category_isused($categoryid, $recursive = false) {
255 throw new coding_exception('question_category_isused has been deprectated. ' .
256 'Please use question_category_in_use instead.');
260 * Tests whether any question in a category is used by any part of Moodle.
262 * @param integer $categoryid a question category id.
263 * @param boolean $recursive whether to check child categories too.
264 * @return boolean whether any question in this category is in use.
266 function question_category_in_use($categoryid, $recursive = false) {
267 global $DB;
269 //Look at each question in the category
270 if ($questions = $DB->get_records_menu('question',
271 array('category' => $categoryid), '', 'id, 1')) {
272 if (questions_in_use(array_keys($questions))) {
273 return true;
276 if (!$recursive) {
277 return false;
280 //Look under child categories recursively
281 if ($children = $DB->get_records('question_categories',
282 array('parent' => $categoryid), '', 'id, 1')) {
283 foreach ($children as $child) {
284 if (question_category_in_use($child->id, $recursive)) {
285 return true;
290 return false;
294 * Deletes question and all associated data from the database
296 * It will not delete a question if it is used by an activity module
297 * @param object $question The question being deleted
299 function question_delete_question($questionid) {
300 global $DB;
302 $question = $DB->get_record_sql('
303 SELECT q.*, qc.contextid
304 FROM {question} q
305 JOIN {question_categories} qc ON qc.id = q.category
306 WHERE q.id = ?', array($questionid));
307 if (!$question) {
308 // In some situations, for example if this was a child of a
309 // Cloze question that was previously deleted, the question may already
310 // have gone. In this case, just do nothing.
311 return;
314 // Do not delete a question if it is used by an activity module
315 if (questions_in_use(array($questionid))) {
316 return;
319 // Check permissions.
320 question_require_capability_on($question, 'edit');
322 $dm = new question_engine_data_mapper();
323 $dm->delete_previews($questionid);
325 // delete questiontype-specific data
326 question_bank::get_qtype($question->qtype, false)->delete_question(
327 $questionid, $question->contextid);
329 // Now recursively delete all child questions
330 if ($children = $DB->get_records('question',
331 array('parent' => $questionid), '', 'id, qtype')) {
332 foreach ($children as $child) {
333 if ($child->id != $questionid) {
334 question_delete_question($child->id);
339 // Finally delete the question record itself
340 $DB->delete_records('question', array('id' => $questionid));
344 * All question categories and their questions are deleted for this course.
346 * @param object $mod an object representing the activity
347 * @param boolean $feedback to specify if the process must output a summary of its work
348 * @return boolean
350 function question_delete_course($course, $feedback=true) {
351 global $DB, $OUTPUT;
353 //To store feedback to be showed at the end of the process
354 $feedbackdata = array();
356 //Cache some strings
357 $strcatdeleted = get_string('unusedcategorydeleted', 'quiz');
358 $coursecontext = get_context_instance(CONTEXT_COURSE, $course->id);
359 $categoriescourse = $DB->get_records('question_categories',
360 array('contextid' => $coursecontext->id), 'parent', 'id, parent, name, contextid');
362 if ($categoriescourse) {
364 //Sort categories following their tree (parent-child) relationships
365 //this will make the feedback more readable
366 $categoriescourse = sort_categories_by_tree($categoriescourse);
368 foreach ($categoriescourse as $category) {
370 //Delete it completely (questions and category itself)
371 //deleting questions
372 if ($questions = $DB->get_records('question',
373 array('category' => $category->id), '', 'id,qtype')) {
374 foreach ($questions as $question) {
375 question_delete_question($question->id);
377 $DB->delete_records("question", array("category" => $category->id));
379 //delete the category
380 $DB->delete_records('question_categories', array('id' => $category->id));
382 //Fill feedback
383 $feedbackdata[] = array($category->name, $strcatdeleted);
385 //Inform about changes performed if feedback is enabled
386 if ($feedback) {
387 $table = new html_table();
388 $table->head = array(get_string('category', 'quiz'), get_string('action'));
389 $table->data = $feedbackdata;
390 echo html_writer::table($table);
393 return true;
397 * Category is about to be deleted,
398 * 1/ All question categories and their questions are deleted for this course category.
399 * 2/ All questions are moved to new category
401 * @param object $category course category object
402 * @param object $newcategory empty means everything deleted, otherwise id of
403 * category where content moved
404 * @param boolean $feedback to specify if the process must output a summary of its work
405 * @return boolean
407 function question_delete_course_category($category, $newcategory, $feedback=true) {
408 global $DB, $OUTPUT;
410 $context = get_context_instance(CONTEXT_COURSECAT, $category->id);
411 if (empty($newcategory)) {
412 $feedbackdata = array(); // To store feedback to be showed at the end of the process
413 $rescueqcategory = null; // See the code around the call to question_save_from_deletion.
414 $strcatdeleted = get_string('unusedcategorydeleted', 'quiz');
416 // Loop over question categories.
417 if ($categories = $DB->get_records('question_categories',
418 array('contextid'=>$context->id), 'parent', 'id, parent, name')) {
419 foreach ($categories as $category) {
421 // Deal with any questions in the category.
422 if ($questions = $DB->get_records('question',
423 array('category' => $category->id), '', 'id,qtype')) {
425 // Try to delete each question.
426 foreach ($questions as $question) {
427 question_delete_question($question->id);
430 // Check to see if there were any questions that were kept because
431 // they are still in use somehow, even though quizzes in courses
432 // in this category will already have been deteted. This could
433 // happen, for example, if questions are added to a course,
434 // and then that course is moved to another category (MDL-14802).
435 $questionids = $DB->get_records_menu('question',
436 array('category'=>$category->id), '', 'id, 1');
437 if (!empty($questionids)) {
438 if (!$rescueqcategory = question_save_from_deletion(
439 array_keys($questionids), get_parent_contextid($context),
440 print_context_name($context), $rescueqcategory)) {
441 return false;
443 $feedbackdata[] = array($category->name,
444 get_string('questionsmovedto', 'question', $rescueqcategory->name));
448 // Now delete the category.
449 if (!$DB->delete_records('question_categories', array('id'=>$category->id))) {
450 return false;
452 $feedbackdata[] = array($category->name, $strcatdeleted);
454 } // End loop over categories.
457 // Output feedback if requested.
458 if ($feedback and $feedbackdata) {
459 $table = new html_table();
460 $table->head = array(get_string('questioncategory', 'question'), get_string('action'));
461 $table->data = $feedbackdata;
462 echo html_writer::table($table);
465 } else {
466 // Move question categories ot the new context.
467 if (!$newcontext = get_context_instance(CONTEXT_COURSECAT, $newcategory->id)) {
468 return false;
470 $DB->set_field('question_categories', 'contextid', $newcontext->id,
471 array('contextid'=>$context->id));
472 if ($feedback) {
473 $a = new stdClass();
474 $a->oldplace = print_context_name($context);
475 $a->newplace = print_context_name($newcontext);
476 echo $OUTPUT->notification(
477 get_string('movedquestionsandcategories', 'question', $a), 'notifysuccess');
481 return true;
485 * Enter description here...
487 * @param string $questionids list of questionids
488 * @param object $newcontext the context to create the saved category in.
489 * @param string $oldplace a textual description of the think being deleted,
490 * e.g. from get_context_name
491 * @param object $newcategory
492 * @return mixed false on
494 function question_save_from_deletion($questionids, $newcontextid, $oldplace,
495 $newcategory = null) {
496 global $DB;
498 // Make a category in the parent context to move the questions to.
499 if (is_null($newcategory)) {
500 $newcategory = new stdClass();
501 $newcategory->parent = 0;
502 $newcategory->contextid = $newcontextid;
503 $newcategory->name = get_string('questionsrescuedfrom', 'question', $oldplace);
504 $newcategory->info = get_string('questionsrescuedfrominfo', 'question', $oldplace);
505 $newcategory->sortorder = 999;
506 $newcategory->stamp = make_unique_id_code();
507 $newcategory->id = $DB->insert_record('question_categories', $newcategory);
510 // Move any remaining questions to the 'saved' category.
511 if (!question_move_questions_to_category($questionids, $newcategory->id)) {
512 return false;
514 return $newcategory;
518 * All question categories and their questions are deleted for this activity.
520 * @param object $cm the course module object representing the activity
521 * @param boolean $feedback to specify if the process must output a summary of its work
522 * @return boolean
524 function question_delete_activity($cm, $feedback=true) {
525 global $DB, $OUTPUT;
527 //To store feedback to be showed at the end of the process
528 $feedbackdata = array();
530 //Cache some strings
531 $strcatdeleted = get_string('unusedcategorydeleted', 'quiz');
532 $modcontext = get_context_instance(CONTEXT_MODULE, $cm->id);
533 if ($categoriesmods = $DB->get_records('question_categories',
534 array('contextid' => $modcontext->id), 'parent', 'id, parent, name, contextid')) {
535 //Sort categories following their tree (parent-child) relationships
536 //this will make the feedback more readable
537 $categoriesmods = sort_categories_by_tree($categoriesmods);
539 foreach ($categoriesmods as $category) {
541 //Delete it completely (questions and category itself)
542 //deleting questions
543 if ($questions = $DB->get_records('question',
544 array('category' => $category->id), '', 'id,qtype')) {
545 foreach ($questions as $question) {
546 question_delete_question($question->id);
548 $DB->delete_records("question", array("category"=>$category->id));
550 //delete the category
551 $DB->delete_records('question_categories', array('id'=>$category->id));
553 //Fill feedback
554 $feedbackdata[] = array($category->name, $strcatdeleted);
556 //Inform about changes performed if feedback is enabled
557 if ($feedback) {
558 $table = new html_table();
559 $table->head = array(get_string('category', 'quiz'), get_string('action'));
560 $table->data = $feedbackdata;
561 echo html_writer::table($table);
564 return true;
568 * This function should be considered private to the question bank, it is called from
569 * question/editlib.php question/contextmoveq.php and a few similar places to to the
570 * work of acutally moving questions and associated data. However, callers of this
571 * function also have to do other work, which is why you should not call this method
572 * directly from outside the questionbank.
574 * @param string $questionids a comma-separated list of question ids.
575 * @param integer $newcategoryid the id of the category to move to.
577 function question_move_questions_to_category($questionids, $newcategoryid) {
578 global $DB;
580 $newcontextid = $DB->get_field('question_categories', 'contextid',
581 array('id' => $newcategoryid));
582 list($questionidcondition, $params) = $DB->get_in_or_equal($questionids);
583 $questions = $DB->get_records_sql("
584 SELECT q.id, q.qtype, qc.contextid
585 FROM {question} q
586 JOIN {question_categories} qc ON q.category = qc.id
587 WHERE q.id $questionidcondition", $params);
588 foreach ($questions as $question) {
589 if ($newcontextid != $question->contextid) {
590 question_bank::get_qtype($question->qtype)->move_files(
591 $question->id, $question->contextid, $newcontextid);
595 // Move the questions themselves.
596 $DB->set_field_select('question', 'category', $newcategoryid,
597 "id $questionidcondition", $params);
599 // Move any subquestions belonging to them.
600 $DB->set_field_select('question', 'category', $newcategoryid,
601 "parent $questionidcondition", $params);
603 // TODO Deal with datasets.
605 return true;
609 * This function helps move a question cateogry to a new context by moving all
610 * the files belonging to all the questions to the new context.
611 * Also moves subcategories.
612 * @param integer $categoryid the id of the category being moved.
613 * @param integer $oldcontextid the old context id.
614 * @param integer $newcontextid the new context id.
616 function question_move_category_to_context($categoryid, $oldcontextid, $newcontextid) {
617 global $DB;
619 $questionids = $DB->get_records_menu('question',
620 array('category' => $categoryid), '', 'id,qtype');
621 foreach ($questionids as $questionid => $qtype) {
622 question_bank::get_qtype($qtype)->move_files(
623 $questionid, $oldcontextid, $newcontextid);
626 $subcatids = $DB->get_records_menu('question_categories',
627 array('parent' => $categoryid), '', 'id,1');
628 foreach ($subcatids as $subcatid => $notused) {
629 $DB->set_field('question_categories', 'contextid', $newcontextid,
630 array('id' => $subcatid));
631 question_move_category_to_context($subcatid, $oldcontextid, $newcontextid);
636 * Generate the URL for starting a new preview of a given question with the given options.
637 * @param integer $questionid the question to preview.
638 * @param string $preferredbehaviour the behaviour to use for the preview.
639 * @param float $maxmark the maximum to mark the question out of.
640 * @param question_display_options $displayoptions the display options to use.
641 * @param int $variant the variant of the question to preview. If null, one will
642 * be picked randomly.
643 * @param object $context context to run the preview in (affects things like
644 * filter settings, theme, lang, etc.) Defaults to $PAGE->context.
645 * @return string the URL.
647 function question_preview_url($questionid, $preferredbehaviour = null,
648 $maxmark = null, $displayoptions = null, $variant = null, $context = null) {
650 $params = array('id' => $questionid);
652 if (is_null($context)) {
653 global $PAGE;
654 $context = $PAGE->context;
656 if ($context->contextlevel == CONTEXT_MODULE) {
657 $params['cmid'] = $context->instanceid;
658 } else if ($context->contextlevel == CONTEXT_COURSE) {
659 $params['courseid'] = $context->instanceid;
662 if (!is_null($preferredbehaviour)) {
663 $params['behaviour'] = $preferredbehaviour;
666 if (!is_null($maxmark)) {
667 $params['maxmark'] = $maxmark;
670 if (!is_null($displayoptions)) {
671 $params['correctness'] = $displayoptions->correctness;
672 $params['marks'] = $displayoptions->marks;
673 $params['markdp'] = $displayoptions->markdp;
674 $params['feedback'] = (bool) $displayoptions->feedback;
675 $params['generalfeedback'] = (bool) $displayoptions->generalfeedback;
676 $params['rightanswer'] = (bool) $displayoptions->rightanswer;
677 $params['history'] = (bool) $displayoptions->history;
680 if ($variant) {
681 $params['variant'] = $variant;
684 return new moodle_url('/question/preview.php', $params);
688 * @return array that can be passed as $params to the {@link popup_action} constructor.
690 function question_preview_popup_params() {
691 return array(
692 'height' => 600,
693 'width' => 800,
698 * Given a list of ids, load the basic information about a set of questions from
699 * the questions table. The $join and $extrafields arguments can be used together
700 * to pull in extra data. See, for example, the usage in mod/quiz/attemptlib.php, and
701 * read the code below to see how the SQL is assembled. Throws exceptions on error.
703 * @global object
704 * @global object
705 * @param array $questionids array of question ids.
706 * @param string $extrafields extra SQL code to be added to the query.
707 * @param string $join extra SQL code to be added to the query.
708 * @param array $extraparams values for any placeholders in $join.
709 * You are strongly recommended to use named placeholder.
711 * @return array partially complete question objects. You need to call get_question_options
712 * on them before they can be properly used.
714 function question_preload_questions($questionids, $extrafields = '', $join = '',
715 $extraparams = array()) {
716 global $DB;
717 if (empty($questionids)) {
718 return array();
720 if ($join) {
721 $join = ' JOIN '.$join;
723 if ($extrafields) {
724 $extrafields = ', ' . $extrafields;
726 list($questionidcondition, $params) = $DB->get_in_or_equal(
727 $questionids, SQL_PARAMS_NAMED, 'qid0000');
728 $sql = 'SELECT q.*, qc.contextid' . $extrafields . ' FROM {question} q
729 JOIN {question_categories} qc ON q.category = qc.id' .
730 $join .
731 ' WHERE q.id ' . $questionidcondition;
733 // Load the questions
734 if (!$questions = $DB->get_records_sql($sql, $extraparams + $params)) {
735 return array();
738 foreach ($questions as $question) {
739 $question->_partiallyloaded = true;
742 // Note, a possible optimisation here would be to not load the TEXT fields
743 // (that is, questiontext and generalfeedback) here, and instead load them in
744 // question_load_questions. That would add one DB query, but reduce the amount
745 // of data transferred most of the time. I am not going to do this optimisation
746 // until it is shown to be worthwhile.
748 return $questions;
752 * Load a set of questions, given a list of ids. The $join and $extrafields arguments can be used
753 * together to pull in extra data. See, for example, the usage in mod/quiz/attempt.php, and
754 * read the code below to see how the SQL is assembled. Throws exceptions on error.
756 * @param array $questionids array of question ids.
757 * @param string $extrafields extra SQL code to be added to the query.
758 * @param string $join extra SQL code to be added to the query.
759 * @param array $extraparams values for any placeholders in $join.
760 * You are strongly recommended to use named placeholder.
762 * @return array question objects.
764 function question_load_questions($questionids, $extrafields = '', $join = '') {
765 $questions = question_preload_questions($questionids, $extrafields, $join);
767 // Load the question type specific information
768 if (!get_question_options($questions)) {
769 return 'Could not load the question options';
772 return $questions;
776 * Private function to factor common code out of get_question_options().
778 * @param object $question the question to tidy.
779 * @param boolean $loadtags load the question tags from the tags table. Optional, default false.
781 function _tidy_question($question, $loadtags = false) {
782 global $CFG;
783 if (!question_bank::is_qtype_installed($question->qtype)) {
784 $question->questiontext = html_writer::tag('p', get_string('warningmissingtype',
785 'qtype_missingtype')) . $question->questiontext;
787 question_bank::get_qtype($question->qtype)->get_question_options($question);
788 if (isset($question->_partiallyloaded)) {
789 unset($question->_partiallyloaded);
791 if ($loadtags && !empty($CFG->usetags)) {
792 require_once($CFG->dirroot . '/tag/lib.php');
793 $question->tags = tag_get_tags_array('question', $question->id);
798 * Updates the question objects with question type specific
799 * information by calling {@link get_question_options()}
801 * Can be called either with an array of question objects or with a single
802 * question object.
804 * @param mixed $questions Either an array of question objects to be updated
805 * or just a single question object
806 * @param boolean $loadtags load the question tags from the tags table. Optional, default false.
807 * @return bool Indicates success or failure.
809 function get_question_options(&$questions, $loadtags = false) {
810 if (is_array($questions)) { // deal with an array of questions
811 foreach ($questions as $i => $notused) {
812 _tidy_question($questions[$i], $loadtags);
814 } else { // deal with single question
815 _tidy_question($questions, $loadtags);
817 return true;
821 * Print the icon for the question type
823 * @param object $question The question object for which the icon is required.
824 * Only $question->qtype is used.
825 * @return string the HTML for the img tag.
827 function print_question_icon($question) {
828 global $OUTPUT;
830 $qtype = question_bank::get_qtype($question->qtype, false);
831 $namestr = $qtype->menu_name();
833 // TODO convert to return a moodle_icon object, or whatever the class is.
834 $html = '<img src="' . $OUTPUT->pix_url('icon', $qtype->plugin_name()) . '" alt="' .
835 $namestr . '" title="' . $namestr . '" />';
837 return $html;
841 * Creates a stamp that uniquely identifies this version of the question
843 * In future we want this to use a hash of the question data to guarantee that
844 * identical versions have the same version stamp.
846 * @param object $question
847 * @return string A unique version stamp
849 function question_hash($question) {
850 return make_unique_id_code();
853 /// FUNCTIONS THAT SIMPLY WRAP QUESTIONTYPE METHODS //////////////////////////////////
855 * Saves question options
857 * Simply calls the question type specific save_question_options() method.
859 function save_question_options($question) {
860 question_bank::get_qtype($question->qtype)->save_question_options($question);
863 /// CATEGORY FUNCTIONS /////////////////////////////////////////////////////////////////
866 * returns the categories with their names ordered following parent-child relationships
867 * finally it tries to return pending categories (those being orphaned, whose parent is
868 * incorrect) to avoid missing any category from original array.
870 function sort_categories_by_tree(&$categories, $id = 0, $level = 1) {
871 global $DB;
873 $children = array();
874 $keys = array_keys($categories);
876 foreach ($keys as $key) {
877 if (!isset($categories[$key]->processed) && $categories[$key]->parent == $id) {
878 $children[$key] = $categories[$key];
879 $categories[$key]->processed = true;
880 $children = $children + sort_categories_by_tree(
881 $categories, $children[$key]->id, $level+1);
884 //If level = 1, we have finished, try to look for non processed categories
885 // (bad parent) and sort them too
886 if ($level == 1) {
887 foreach ($keys as $key) {
888 // If not processed and it's a good candidate to start (because its
889 // parent doesn't exist in the course)
890 if (!isset($categories[$key]->processed) && !$DB->record_exists('question_categories',
891 array('contextid' => $categories[$key]->contextid,
892 'id' => $categories[$key]->parent))) {
893 $children[$key] = $categories[$key];
894 $categories[$key]->processed = true;
895 $children = $children + sort_categories_by_tree(
896 $categories, $children[$key]->id, $level + 1);
900 return $children;
904 * Private method, only for the use of add_indented_names().
906 * Recursively adds an indentedname field to each category, starting with the category
907 * with id $id, and dealing with that category and all its children, and
908 * return a new array, with those categories in the right order.
910 * @param array $categories an array of categories which has had childids
911 * fields added by flatten_category_tree(). Passed by reference for
912 * performance only. It is not modfied.
913 * @param int $id the category to start the indenting process from.
914 * @param int $depth the indent depth. Used in recursive calls.
915 * @return array a new array of categories, in the right order for the tree.
917 function flatten_category_tree(&$categories, $id, $depth = 0, $nochildrenof = -1) {
919 // Indent the name of this category.
920 $newcategories = array();
921 $newcategories[$id] = $categories[$id];
922 $newcategories[$id]->indentedname = str_repeat('&nbsp;&nbsp;&nbsp;', $depth) .
923 $categories[$id]->name;
925 // Recursively indent the children.
926 foreach ($categories[$id]->childids as $childid) {
927 if ($childid != $nochildrenof) {
928 $newcategories = $newcategories + flatten_category_tree(
929 $categories, $childid, $depth + 1, $nochildrenof);
933 // Remove the childids array that were temporarily added.
934 unset($newcategories[$id]->childids);
936 return $newcategories;
940 * Format categories into an indented list reflecting the tree structure.
942 * @param array $categories An array of category objects, for example from the.
943 * @return array The formatted list of categories.
945 function add_indented_names($categories, $nochildrenof = -1) {
947 // Add an array to each category to hold the child category ids. This array
948 // will be removed again by flatten_category_tree(). It should not be used
949 // outside these two functions.
950 foreach (array_keys($categories) as $id) {
951 $categories[$id]->childids = array();
954 // Build the tree structure, and record which categories are top-level.
955 // We have to be careful, because the categories array may include published
956 // categories from other courses, but not their parents.
957 $toplevelcategoryids = array();
958 foreach (array_keys($categories) as $id) {
959 if (!empty($categories[$id]->parent) &&
960 array_key_exists($categories[$id]->parent, $categories)) {
961 $categories[$categories[$id]->parent]->childids[] = $id;
962 } else {
963 $toplevelcategoryids[] = $id;
967 // Flatten the tree to and add the indents.
968 $newcategories = array();
969 foreach ($toplevelcategoryids as $id) {
970 $newcategories = $newcategories + flatten_category_tree(
971 $categories, $id, 0, $nochildrenof);
974 return $newcategories;
978 * Output a select menu of question categories.
980 * Categories from this course and (optionally) published categories from other courses
981 * are included. Optionally, only categories the current user may edit can be included.
983 * @param integer $courseid the id of the course to get the categories for.
984 * @param integer $published if true, include publised categories from other courses.
985 * @param integer $only_editable if true, exclude categories this user is not allowed to edit.
986 * @param integer $selected optionally, the id of a category to be selected by
987 * default in the dropdown.
989 function question_category_select_menu($contexts, $top = false, $currentcat = 0,
990 $selected = "", $nochildrenof = -1) {
991 global $OUTPUT;
992 $categoriesarray = question_category_options($contexts, $top, $currentcat,
993 false, $nochildrenof);
994 if ($selected) {
995 $choose = '';
996 } else {
997 $choose = 'choosedots';
999 $options = array();
1000 foreach ($categoriesarray as $group => $opts) {
1001 $options[] = array($group => $opts);
1004 echo html_writer::select($options, 'category', $selected, $choose);
1008 * @param integer $contextid a context id.
1009 * @return object the default question category for that context, or false if none.
1011 function question_get_default_category($contextid) {
1012 global $DB;
1013 $category = $DB->get_records('question_categories',
1014 array('contextid' => $contextid), 'id', '*', 0, 1);
1015 if (!empty($category)) {
1016 return reset($category);
1017 } else {
1018 return false;
1023 * Gets the default category in the most specific context.
1024 * If no categories exist yet then default ones are created in all contexts.
1026 * @param array $contexts The context objects for this context and all parent contexts.
1027 * @return object The default category - the category in the course context
1029 function question_make_default_categories($contexts) {
1030 global $DB;
1031 static $preferredlevels = array(
1032 CONTEXT_COURSE => 4,
1033 CONTEXT_MODULE => 3,
1034 CONTEXT_COURSECAT => 2,
1035 CONTEXT_SYSTEM => 1,
1038 $toreturn = null;
1039 $preferredness = 0;
1040 // If it already exists, just return it.
1041 foreach ($contexts as $key => $context) {
1042 if (!$exists = $DB->record_exists("question_categories",
1043 array('contextid' => $context->id))) {
1044 // Otherwise, we need to make one
1045 $category = new stdClass();
1046 $contextname = print_context_name($context, false, true);
1047 $category->name = get_string('defaultfor', 'question', $contextname);
1048 $category->info = get_string('defaultinfofor', 'question', $contextname);
1049 $category->contextid = $context->id;
1050 $category->parent = 0;
1051 // By default, all categories get this number, and are sorted alphabetically.
1052 $category->sortorder = 999;
1053 $category->stamp = make_unique_id_code();
1054 $category->id = $DB->insert_record('question_categories', $category);
1055 } else {
1056 $category = question_get_default_category($context->id);
1058 if ($preferredlevels[$context->contextlevel] > $preferredness && has_any_capability(
1059 array('moodle/question:usemine', 'moodle/question:useall'), $context)) {
1060 $toreturn = $category;
1061 $preferredness = $preferredlevels[$context->contextlevel];
1065 if (!is_null($toreturn)) {
1066 $toreturn = clone($toreturn);
1068 return $toreturn;
1072 * Get all the category objects, including a count of the number of questions in that category,
1073 * for all the categories in the lists $contexts.
1075 * @param mixed $contexts either a single contextid, or a comma-separated list of context ids.
1076 * @param string $sortorder used as the ORDER BY clause in the select statement.
1077 * @return array of category objects.
1079 function get_categories_for_contexts($contexts, $sortorder = 'parent, sortorder, name ASC') {
1080 global $DB;
1081 return $DB->get_records_sql("
1082 SELECT c.*, (SELECT count(1) FROM {question} q
1083 WHERE c.id = q.category AND q.hidden='0' AND q.parent='0') AS questioncount
1084 FROM {question_categories} c
1085 WHERE c.contextid IN ($contexts)
1086 ORDER BY $sortorder");
1090 * Output an array of question categories.
1092 function question_category_options($contexts, $top = false, $currentcat = 0,
1093 $popupform = false, $nochildrenof = -1) {
1094 global $CFG;
1095 $pcontexts = array();
1096 foreach ($contexts as $context) {
1097 $pcontexts[] = $context->id;
1099 $contextslist = join($pcontexts, ', ');
1101 $categories = get_categories_for_contexts($contextslist);
1103 $categories = question_add_context_in_key($categories);
1105 if ($top) {
1106 $categories = question_add_tops($categories, $pcontexts);
1108 $categories = add_indented_names($categories, $nochildrenof);
1110 // sort cats out into different contexts
1111 $categoriesarray = array();
1112 foreach ($pcontexts as $pcontext) {
1113 $contextstring = print_context_name(
1114 get_context_instance_by_id($pcontext), true, true);
1115 foreach ($categories as $category) {
1116 if ($category->contextid == $pcontext) {
1117 $cid = $category->id;
1118 if ($currentcat != $cid || $currentcat == 0) {
1119 $countstring = !empty($category->questioncount) ?
1120 " ($category->questioncount)" : '';
1121 $categoriesarray[$contextstring][$cid] = $category->indentedname.$countstring;
1126 if ($popupform) {
1127 $popupcats = array();
1128 foreach ($categoriesarray as $contextstring => $optgroup) {
1129 $group = array();
1130 foreach ($optgroup as $key => $value) {
1131 $key = str_replace($CFG->wwwroot, '', $key);
1132 $group[$key] = $value;
1134 $popupcats[] = array($contextstring => $group);
1136 return $popupcats;
1137 } else {
1138 return $categoriesarray;
1142 function question_add_context_in_key($categories) {
1143 $newcatarray = array();
1144 foreach ($categories as $id => $category) {
1145 $category->parent = "$category->parent,$category->contextid";
1146 $category->id = "$category->id,$category->contextid";
1147 $newcatarray["$id,$category->contextid"] = $category;
1149 return $newcatarray;
1152 function question_add_tops($categories, $pcontexts) {
1153 $topcats = array();
1154 foreach ($pcontexts as $context) {
1155 $newcat = new stdClass();
1156 $newcat->id = "0,$context";
1157 $newcat->name = get_string('top');
1158 $newcat->parent = -1;
1159 $newcat->contextid = $context;
1160 $topcats["0,$context"] = $newcat;
1162 //put topcats in at beginning of array - they'll be sorted into different contexts later.
1163 return array_merge($topcats, $categories);
1167 * @return array of question category ids of the category and all subcategories.
1169 function question_categorylist($categoryid) {
1170 global $DB;
1172 $subcategories = $DB->get_records('question_categories',
1173 array('parent' => $categoryid), 'sortorder ASC', 'id, 1');
1175 $categorylist = array($categoryid);
1176 foreach ($subcategories as $subcategory) {
1177 $categorylist = array_merge($categorylist, question_categorylist($subcategory->id));
1180 return $categorylist;
1183 //===========================
1184 // Import/Export Functions
1185 //===========================
1188 * Get list of available import or export formats
1189 * @param string $type 'import' if import list, otherwise export list assumed
1190 * @return array sorted list of import/export formats available
1192 function get_import_export_formats($type) {
1193 global $CFG;
1195 $fileformats = get_plugin_list('qformat');
1197 $fileformatname = array();
1198 require_once($CFG->dirroot . '/question/format.php');
1199 foreach ($fileformats as $fileformat => $fdir) {
1200 $formatfile = $fdir . '/format.php';
1201 if (is_readable($formatfile)) {
1202 include_once($formatfile);
1203 } else {
1204 continue;
1207 $classname = 'qformat_' . $fileformat;
1208 $formatclass = new $classname();
1209 if ($type == 'import') {
1210 $provided = $formatclass->provide_import();
1211 } else {
1212 $provided = $formatclass->provide_export();
1215 if ($provided) {
1216 $fileformatnames[$fileformat] = get_string($fileformat, 'qformat_' . $fileformat);
1220 collatorlib::asort($fileformatnames);
1221 return $fileformatnames;
1226 * Create a reasonable default file name for exporting questions from a particular
1227 * category.
1228 * @param object $course the course the questions are in.
1229 * @param object $category the question category.
1230 * @return string the filename.
1232 function question_default_export_filename($course, $category) {
1233 // We build a string that is an appropriate name (questions) from the lang pack,
1234 // then the corse shortname, then the question category name, then a timestamp.
1236 $base = clean_filename(get_string('exportfilename', 'question'));
1238 $dateformat = str_replace(' ', '_', get_string('exportnameformat', 'question'));
1239 $timestamp = clean_filename(userdate(time(), $dateformat, 99, false));
1241 $shortname = clean_filename($course->shortname);
1242 if ($shortname == '' || $shortname == '_' ) {
1243 $shortname = $course->id;
1246 $categoryname = clean_filename(format_string($category->name));
1248 return "{$base}-{$shortname}-{$categoryname}-{$timestamp}";
1250 return $export_name;
1254 * Converts contextlevels to strings and back to help with reading/writing contexts
1255 * to/from import/export files.
1257 * @copyright 1999 onwards Martin Dougiamas {@link http://moodle.com}
1258 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
1260 class context_to_string_translator{
1262 * @var array used to translate between contextids and strings for this context.
1264 protected $contexttostringarray = array();
1266 public function __construct($contexts) {
1267 $this->generate_context_to_string_array($contexts);
1270 public function context_to_string($contextid) {
1271 return $this->contexttostringarray[$contextid];
1274 public function string_to_context($contextname) {
1275 $contextid = array_search($contextname, $this->contexttostringarray);
1276 return $contextid;
1279 protected function generate_context_to_string_array($contexts) {
1280 if (!$this->contexttostringarray) {
1281 $catno = 1;
1282 foreach ($contexts as $context) {
1283 switch ($context->contextlevel) {
1284 case CONTEXT_MODULE :
1285 $contextstring = 'module';
1286 break;
1287 case CONTEXT_COURSE :
1288 $contextstring = 'course';
1289 break;
1290 case CONTEXT_COURSECAT :
1291 $contextstring = "cat$catno";
1292 $catno++;
1293 break;
1294 case CONTEXT_SYSTEM :
1295 $contextstring = 'system';
1296 break;
1298 $this->contexttostringarray[$context->id] = $contextstring;
1306 * Check capability on category
1308 * @param mixed $question object or id
1309 * @param string $cap 'add', 'edit', 'view', 'use', 'move'
1310 * @param integer $cachecat useful to cache all question records in a category
1311 * @return boolean this user has the capability $cap for this question $question?
1313 function question_has_capability_on($question, $cap, $cachecat = -1) {
1314 global $USER, $DB;
1316 // these are capabilities on existing questions capabilties are
1317 //set per category. Each of these has a mine and all version. Append 'mine' and 'all'
1318 $question_questioncaps = array('edit', 'view', 'use', 'move');
1319 static $questions = array();
1320 static $categories = array();
1321 static $cachedcat = array();
1322 if ($cachecat != -1 && array_search($cachecat, $cachedcat) === false) {
1323 $questions += $DB->get_records('question', array('category' => $cachecat));
1324 $cachedcat[] = $cachecat;
1326 if (!is_object($question)) {
1327 if (!isset($questions[$question])) {
1328 if (!$questions[$question] = $DB->get_record('question',
1329 array('id' => $question), 'id,category,createdby')) {
1330 print_error('questiondoesnotexist', 'question');
1333 $question = $questions[$question];
1335 if (empty($question->category)) {
1336 // This can happen when we have created a fake 'missingtype' question to
1337 // take the place of a deleted question.
1338 return false;
1340 if (!isset($categories[$question->category])) {
1341 if (!$categories[$question->category] = $DB->get_record('question_categories',
1342 array('id'=>$question->category))) {
1343 print_error('invalidcategory', 'quiz');
1346 $category = $categories[$question->category];
1347 $context = get_context_instance_by_id($category->contextid);
1349 if (array_search($cap, $question_questioncaps)!== false) {
1350 if (!has_capability('moodle/question:' . $cap . 'all', $context)) {
1351 if ($question->createdby == $USER->id) {
1352 return has_capability('moodle/question:' . $cap . 'mine', $context);
1353 } else {
1354 return false;
1356 } else {
1357 return true;
1359 } else {
1360 return has_capability('moodle/question:' . $cap, $context);
1366 * Require capability on question.
1368 function question_require_capability_on($question, $cap) {
1369 if (!question_has_capability_on($question, $cap)) {
1370 print_error('nopermissions', '', '', $cap);
1372 return true;
1376 * Get the real state - the correct question id and answer - for a random
1377 * question.
1378 * @param object $state with property answer.
1379 * @return mixed return integer real question id or false if there was an
1380 * error..
1382 function question_get_real_state($state) {
1383 global $OUTPUT;
1384 $realstate = clone($state);
1385 $matches = array();
1386 if (!preg_match('|^random([0-9]+)-(.*)|', $state->answer, $matches)) {
1387 echo $OUTPUT->notification(get_string('errorrandom', 'quiz_statistics'));
1388 return false;
1389 } else {
1390 $realstate->question = $matches[1];
1391 $realstate->answer = $matches[2];
1392 return $realstate;
1397 * @param object $context a context
1398 * @return string A URL for editing questions in this context.
1400 function question_edit_url($context) {
1401 global $CFG, $SITE;
1402 if (!has_any_capability(question_get_question_capabilities(), $context)) {
1403 return false;
1405 $baseurl = $CFG->wwwroot . '/question/edit.php?';
1406 $defaultcategory = question_get_default_category($context->id);
1407 if ($defaultcategory) {
1408 $baseurl .= 'cat=' . $defaultcategory->id . ',' . $context->id . '&amp;';
1410 switch ($context->contextlevel) {
1411 case CONTEXT_SYSTEM:
1412 return $baseurl . 'courseid=' . $SITE->id;
1413 case CONTEXT_COURSECAT:
1414 // This is nasty, becuase we can only edit questions in a course
1415 // context at the moment, so for now we just return false.
1416 return false;
1417 case CONTEXT_COURSE:
1418 return $baseurl . 'courseid=' . $context->instanceid;
1419 case CONTEXT_MODULE:
1420 return $baseurl . 'cmid=' . $context->instanceid;
1426 * Adds question bank setting links to the given navigation node if caps are met.
1428 * @param navigation_node $navigationnode The navigation node to add the question branch to
1429 * @param object $context
1430 * @return navigation_node Returns the question branch that was added
1432 function question_extend_settings_navigation(navigation_node $navigationnode, $context) {
1433 global $PAGE;
1435 if ($context->contextlevel == CONTEXT_COURSE) {
1436 $params = array('courseid'=>$context->instanceid);
1437 } else if ($context->contextlevel == CONTEXT_MODULE) {
1438 $params = array('cmid'=>$context->instanceid);
1439 } else {
1440 return;
1443 if (($cat = $PAGE->url->param('cat')) && preg_match('~\d+,\d+~', $cat)) {
1444 $params['cat'] = $cat;
1447 $questionnode = $navigationnode->add(get_string('questionbank', 'question'),
1448 new moodle_url('/question/edit.php', $params), navigation_node::TYPE_CONTAINER);
1450 $contexts = new question_edit_contexts($context);
1451 if ($contexts->have_one_edit_tab_cap('questions')) {
1452 $questionnode->add(get_string('questions', 'quiz'), new moodle_url(
1453 '/question/edit.php', $params), navigation_node::TYPE_SETTING);
1455 if ($contexts->have_one_edit_tab_cap('categories')) {
1456 $questionnode->add(get_string('categories', 'quiz'), new moodle_url(
1457 '/question/category.php', $params), navigation_node::TYPE_SETTING);
1459 if ($contexts->have_one_edit_tab_cap('import')) {
1460 $questionnode->add(get_string('import', 'quiz'), new moodle_url(
1461 '/question/import.php', $params), navigation_node::TYPE_SETTING);
1463 if ($contexts->have_one_edit_tab_cap('export')) {
1464 $questionnode->add(get_string('export', 'quiz'), new moodle_url(
1465 '/question/export.php', $params), navigation_node::TYPE_SETTING);
1468 return $questionnode;
1472 * @return array all the capabilities that relate to accessing particular questions.
1474 function question_get_question_capabilities() {
1475 return array(
1476 'moodle/question:add',
1477 'moodle/question:editmine',
1478 'moodle/question:editall',
1479 'moodle/question:viewmine',
1480 'moodle/question:viewall',
1481 'moodle/question:usemine',
1482 'moodle/question:useall',
1483 'moodle/question:movemine',
1484 'moodle/question:moveall',
1489 * @return array all the question bank capabilities.
1491 function question_get_all_capabilities() {
1492 $caps = question_get_question_capabilities();
1493 $caps[] = 'moodle/question:managecategory';
1494 $caps[] = 'moodle/question:flag';
1495 return $caps;
1498 class question_edit_contexts {
1500 public static $caps = array(
1501 'editq' => array('moodle/question:add',
1502 'moodle/question:editmine',
1503 'moodle/question:editall',
1504 'moodle/question:viewmine',
1505 'moodle/question:viewall',
1506 'moodle/question:usemine',
1507 'moodle/question:useall',
1508 'moodle/question:movemine',
1509 'moodle/question:moveall'),
1510 'questions'=>array('moodle/question:add',
1511 'moodle/question:editmine',
1512 'moodle/question:editall',
1513 'moodle/question:viewmine',
1514 'moodle/question:viewall',
1515 'moodle/question:movemine',
1516 'moodle/question:moveall'),
1517 'categories'=>array('moodle/question:managecategory'),
1518 'import'=>array('moodle/question:add'),
1519 'export'=>array('moodle/question:viewall', 'moodle/question:viewmine'));
1521 protected $allcontexts;
1524 * @param current context
1526 public function __construct($thiscontext) {
1527 $pcontextids = get_parent_contexts($thiscontext);
1528 $contexts = array($thiscontext);
1529 foreach ($pcontextids as $pcontextid) {
1530 $contexts[] = get_context_instance_by_id($pcontextid);
1532 $this->allcontexts = $contexts;
1535 * @return array all parent contexts
1537 public function all() {
1538 return $this->allcontexts;
1541 * @return object lowest context which must be either the module or course context
1543 public function lowest() {
1544 return $this->allcontexts[0];
1547 * @param string $cap capability
1548 * @return array parent contexts having capability, zero based index
1550 public function having_cap($cap) {
1551 $contextswithcap = array();
1552 foreach ($this->allcontexts as $context) {
1553 if (has_capability($cap, $context)) {
1554 $contextswithcap[] = $context;
1557 return $contextswithcap;
1560 * @param array $caps capabilities
1561 * @return array parent contexts having at least one of $caps, zero based index
1563 public function having_one_cap($caps) {
1564 $contextswithacap = array();
1565 foreach ($this->allcontexts as $context) {
1566 foreach ($caps as $cap) {
1567 if (has_capability($cap, $context)) {
1568 $contextswithacap[] = $context;
1569 break; //done with caps loop
1573 return $contextswithacap;
1576 * @param string $tabname edit tab name
1577 * @return array parent contexts having at least one of $caps, zero based index
1579 public function having_one_edit_tab_cap($tabname) {
1580 return $this->having_one_cap(self::$caps[$tabname]);
1583 * Has at least one parent context got the cap $cap?
1585 * @param string $cap capability
1586 * @return boolean
1588 public function have_cap($cap) {
1589 return (count($this->having_cap($cap)));
1593 * Has at least one parent context got one of the caps $caps?
1595 * @param array $caps capability
1596 * @return boolean
1598 public function have_one_cap($caps) {
1599 foreach ($caps as $cap) {
1600 if ($this->have_cap($cap)) {
1601 return true;
1604 return false;
1608 * Has at least one parent context got one of the caps for actions on $tabname
1610 * @param string $tabname edit tab name
1611 * @return boolean
1613 public function have_one_edit_tab_cap($tabname) {
1614 return $this->have_one_cap(self::$caps[$tabname]);
1618 * Throw error if at least one parent context hasn't got the cap $cap
1620 * @param string $cap capability
1622 public function require_cap($cap) {
1623 if (!$this->have_cap($cap)) {
1624 print_error('nopermissions', '', '', $cap);
1629 * Throw error if at least one parent context hasn't got one of the caps $caps
1631 * @param array $cap capabilities
1633 public function require_one_cap($caps) {
1634 if (!$this->have_one_cap($caps)) {
1635 $capsstring = join($caps, ', ');
1636 print_error('nopermissions', '', '', $capsstring);
1641 * Throw error if at least one parent context hasn't got one of the caps $caps
1643 * @param string $tabname edit tab name
1645 public function require_one_edit_tab_cap($tabname) {
1646 if (!$this->have_one_edit_tab_cap($tabname)) {
1647 print_error('nopermissions', '', '', 'access question edit tab '.$tabname);
1653 * Rewrite question url, file_rewrite_pluginfile_urls always build url by
1654 * $file/$contextid/$component/$filearea/$itemid/$pathname_in_text, so we cannot add
1655 * extra questionid and attempted in url by it, so we create quiz_rewrite_question_urls
1656 * to build url here
1658 * @param string $text text being processed
1659 * @param string $file the php script used to serve files
1660 * @param int $contextid
1661 * @param string $component component
1662 * @param string $filearea filearea
1663 * @param array $ids other IDs will be used to check file permission
1664 * @param int $itemid
1665 * @param array $options
1666 * @return string
1668 function question_rewrite_question_urls($text, $file, $contextid, $component,
1669 $filearea, array $ids, $itemid, array $options=null) {
1670 global $CFG;
1672 $options = (array)$options;
1673 if (!isset($options['forcehttps'])) {
1674 $options['forcehttps'] = false;
1677 if (!$CFG->slasharguments) {
1678 $file = $file . '?file=';
1681 $baseurl = "$CFG->wwwroot/$file/$contextid/$component/$filearea/";
1683 if (!empty($ids)) {
1684 $baseurl .= (implode('/', $ids) . '/');
1687 if ($itemid !== null) {
1688 $baseurl .= "$itemid/";
1691 if ($options['forcehttps']) {
1692 $baseurl = str_replace('http://', 'https://', $baseurl);
1695 return str_replace('@@PLUGINFILE@@/', $baseurl, $text);
1699 * Called by pluginfile.php to serve files related to the 'question' core
1700 * component and for files belonging to qtypes.
1702 * For files that relate to questions in a question_attempt, then we delegate to
1703 * a function in the component that owns the attempt (for example in the quiz,
1704 * or in core question preview) to get necessary inforation.
1706 * (Note that, at the moment, all question file areas relate to questions in
1707 * attempts, so the If at the start of the last paragraph is always true.)
1709 * Does not return, either calls send_file_not_found(); or serves the file.
1711 * @param object $course course settings object
1712 * @param object $context context object
1713 * @param string $component the name of the component we are serving files for.
1714 * @param string $filearea the name of the file area.
1715 * @param array $args the remaining bits of the file path.
1716 * @param bool $forcedownload whether the user must be forced to download the file.
1718 function question_pluginfile($course, $context, $component, $filearea, $args, $forcedownload) {
1719 global $DB, $CFG;
1721 list($context, $course, $cm) = get_context_info_array($context->id);
1722 require_login($course, false, $cm);
1724 if ($filearea === 'export') {
1725 require_once($CFG->dirroot . '/question/editlib.php');
1726 $contexts = new question_edit_contexts($context);
1727 // check export capability
1728 $contexts->require_one_edit_tab_cap('export');
1729 $category_id = (int)array_shift($args);
1730 $format = array_shift($args);
1731 $cattofile = array_shift($args);
1732 $contexttofile = array_shift($args);
1733 $filename = array_shift($args);
1735 // load parent class for import/export
1736 require_once($CFG->dirroot . '/question/format.php');
1737 require_once($CFG->dirroot . '/question/editlib.php');
1738 require_once($CFG->dirroot . '/question/format/' . $format . '/format.php');
1740 $classname = 'qformat_' . $format;
1741 if (!class_exists($classname)) {
1742 send_file_not_found();
1745 $qformat = new $classname();
1747 if (!$category = $DB->get_record('question_categories', array('id' => $category_id))) {
1748 send_file_not_found();
1751 $qformat->setCategory($category);
1752 $qformat->setContexts($contexts->having_one_edit_tab_cap('export'));
1753 $qformat->setCourse($course);
1755 if ($cattofile == 'withcategories') {
1756 $qformat->setCattofile(true);
1757 } else {
1758 $qformat->setCattofile(false);
1761 if ($contexttofile == 'withcontexts') {
1762 $qformat->setContexttofile(true);
1763 } else {
1764 $qformat->setContexttofile(false);
1767 if (!$qformat->exportpreprocess()) {
1768 send_file_not_found();
1769 print_error('exporterror', 'question', $thispageurl->out());
1772 // export data to moodle file pool
1773 if (!$content = $qformat->exportprocess(true)) {
1774 send_file_not_found();
1777 send_file($content, $filename, 0, 0, true, true, $qformat->mime_type());
1780 $qubaid = (int)array_shift($args);
1781 $slot = (int)array_shift($args);
1783 $module = $DB->get_field('question_usages', 'component',
1784 array('id' => $qubaid));
1786 if ($module === 'core_question_preview') {
1787 require_once($CFG->dirroot . '/question/previewlib.php');
1788 return question_preview_question_pluginfile($course, $context,
1789 $component, $filearea, $qubaid, $slot, $args, $forcedownload);
1791 } else {
1792 $dir = get_component_directory($module);
1793 if (!file_exists("$dir/lib.php")) {
1794 send_file_not_found();
1796 include_once("$dir/lib.php");
1798 $filefunction = $module . '_question_pluginfile';
1799 if (!function_exists($filefunction)) {
1800 send_file_not_found();
1803 $filefunction($course, $context, $component, $filearea, $qubaid, $slot,
1804 $args, $forcedownload);
1806 send_file_not_found();
1811 * Create url for question export
1813 * @param int $contextid, current context
1814 * @param int $categoryid, categoryid
1815 * @param string $format
1816 * @param string $withcategories
1817 * @param string $ithcontexts
1818 * @param moodle_url export file url
1820 function question_make_export_url($contextid, $categoryid, $format, $withcategories,
1821 $withcontexts, $filename) {
1822 global $CFG;
1823 $urlbase = "$CFG->httpswwwroot/pluginfile.php";
1824 return moodle_url::make_file_url($urlbase,
1825 "/$contextid/question/export/{$categoryid}/{$format}/{$withcategories}" .
1826 "/{$withcontexts}/{$filename}", true);
1830 * Return a list of page types
1831 * @param string $pagetype current page type
1832 * @param stdClass $parentcontext Block's parent context
1833 * @param stdClass $currentcontext Current context of block
1835 function question_page_type_list($pagetype, $parentcontext, $currentcontext) {
1836 global $CFG;
1837 $types = array(
1838 'question-*'=>get_string('page-question-x', 'question'),
1839 'question-edit'=>get_string('page-question-edit', 'question'),
1840 'question-category'=>get_string('page-question-category', 'question'),
1841 'question-export'=>get_string('page-question-export', 'question'),
1842 'question-import'=>get_string('page-question-import', 'question')
1844 if ($currentcontext->contextlevel == CONTEXT_COURSE) {
1845 require_once($CFG->dirroot . '/course/lib.php');
1846 return array_merge(course_page_type_list($pagetype, $parentcontext, $currentcontext), $types);
1847 } else {
1848 return $types;