Merge branch 'MDL-31712_M21' of git://github.com/kordan/moodle into MOODLE_21_STABLE
[moodle.git] / lib / questionlib.php
blob8bb1338433e31840a856a3a7e8d2b1b227fe2409
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 array $questionids of question ids
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 array $questionids 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 $PAGE;
829 return $PAGE->get_renderer('question', 'bank')->qtype_icon($question->qtype);
833 * Creates a stamp that uniquely identifies this version of the question
835 * In future we want this to use a hash of the question data to guarantee that
836 * identical versions have the same version stamp.
838 * @param object $question
839 * @return string A unique version stamp
841 function question_hash($question) {
842 return make_unique_id_code();
845 /// FUNCTIONS THAT SIMPLY WRAP QUESTIONTYPE METHODS //////////////////////////////////
847 * Get anything that needs to be included in the head of the question editing page
848 * for a particular question type. This function is called by question/question.php.
850 * @param $question A question object. Only $question->qtype is used.
851 * @return string Deprecated. Some HTML code that can go inside the head tag.
853 function question_get_editing_head_contributions($question) {
854 question_bank::get_qtype($question->qtype, false)->get_editing_head_contributions();
858 * Saves question options
860 * Simply calls the question type specific save_question_options() method.
862 function save_question_options($question) {
863 question_bank::get_qtype($question->qtype)->save_question_options($question);
866 /// CATEGORY FUNCTIONS /////////////////////////////////////////////////////////////////
869 * returns the categories with their names ordered following parent-child relationships
870 * finally it tries to return pending categories (those being orphaned, whose parent is
871 * incorrect) to avoid missing any category from original array.
873 function sort_categories_by_tree(&$categories, $id = 0, $level = 1) {
874 global $DB;
876 $children = array();
877 $keys = array_keys($categories);
879 foreach ($keys as $key) {
880 if (!isset($categories[$key]->processed) && $categories[$key]->parent == $id) {
881 $children[$key] = $categories[$key];
882 $categories[$key]->processed = true;
883 $children = $children + sort_categories_by_tree(
884 $categories, $children[$key]->id, $level+1);
887 //If level = 1, we have finished, try to look for non processed categories
888 // (bad parent) and sort them too
889 if ($level == 1) {
890 foreach ($keys as $key) {
891 // If not processed and it's a good candidate to start (because its
892 // parent doesn't exist in the course)
893 if (!isset($categories[$key]->processed) && !$DB->record_exists('question_categories',
894 array('contextid' => $categories[$key]->contextid,
895 'id' => $categories[$key]->parent))) {
896 $children[$key] = $categories[$key];
897 $categories[$key]->processed = true;
898 $children = $children + sort_categories_by_tree(
899 $categories, $children[$key]->id, $level + 1);
903 return $children;
907 * Private method, only for the use of add_indented_names().
909 * Recursively adds an indentedname field to each category, starting with the category
910 * with id $id, and dealing with that category and all its children, and
911 * return a new array, with those categories in the right order.
913 * @param array $categories an array of categories which has had childids
914 * fields added by flatten_category_tree(). Passed by reference for
915 * performance only. It is not modfied.
916 * @param int $id the category to start the indenting process from.
917 * @param int $depth the indent depth. Used in recursive calls.
918 * @return array a new array of categories, in the right order for the tree.
920 function flatten_category_tree(&$categories, $id, $depth = 0, $nochildrenof = -1) {
922 // Indent the name of this category.
923 $newcategories = array();
924 $newcategories[$id] = $categories[$id];
925 $newcategories[$id]->indentedname = str_repeat('&nbsp;&nbsp;&nbsp;', $depth) .
926 $categories[$id]->name;
928 // Recursively indent the children.
929 foreach ($categories[$id]->childids as $childid) {
930 if ($childid != $nochildrenof) {
931 $newcategories = $newcategories + flatten_category_tree(
932 $categories, $childid, $depth + 1, $nochildrenof);
936 // Remove the childids array that were temporarily added.
937 unset($newcategories[$id]->childids);
939 return $newcategories;
943 * Format categories into an indented list reflecting the tree structure.
945 * @param array $categories An array of category objects, for example from the.
946 * @return array The formatted list of categories.
948 function add_indented_names($categories, $nochildrenof = -1) {
950 // Add an array to each category to hold the child category ids. This array
951 // will be removed again by flatten_category_tree(). It should not be used
952 // outside these two functions.
953 foreach (array_keys($categories) as $id) {
954 $categories[$id]->childids = array();
957 // Build the tree structure, and record which categories are top-level.
958 // We have to be careful, because the categories array may include published
959 // categories from other courses, but not their parents.
960 $toplevelcategoryids = array();
961 foreach (array_keys($categories) as $id) {
962 if (!empty($categories[$id]->parent) &&
963 array_key_exists($categories[$id]->parent, $categories)) {
964 $categories[$categories[$id]->parent]->childids[] = $id;
965 } else {
966 $toplevelcategoryids[] = $id;
970 // Flatten the tree to and add the indents.
971 $newcategories = array();
972 foreach ($toplevelcategoryids as $id) {
973 $newcategories = $newcategories + flatten_category_tree(
974 $categories, $id, 0, $nochildrenof);
977 return $newcategories;
981 * Output a select menu of question categories.
983 * Categories from this course and (optionally) published categories from other courses
984 * are included. Optionally, only categories the current user may edit can be included.
986 * @param integer $courseid the id of the course to get the categories for.
987 * @param integer $published if true, include publised categories from other courses.
988 * @param integer $only_editable if true, exclude categories this user is not allowed to edit.
989 * @param integer $selected optionally, the id of a category to be selected by
990 * default in the dropdown.
992 function question_category_select_menu($contexts, $top = false, $currentcat = 0,
993 $selected = "", $nochildrenof = -1) {
994 global $OUTPUT;
995 $categoriesarray = question_category_options($contexts, $top, $currentcat,
996 false, $nochildrenof);
997 if ($selected) {
998 $choose = '';
999 } else {
1000 $choose = 'choosedots';
1002 $options = array();
1003 foreach ($categoriesarray as $group => $opts) {
1004 $options[] = array($group => $opts);
1007 echo html_writer::select($options, 'category', $selected, $choose);
1011 * @param integer $contextid a context id.
1012 * @return object the default question category for that context, or false if none.
1014 function question_get_default_category($contextid) {
1015 global $DB;
1016 $category = $DB->get_records('question_categories',
1017 array('contextid' => $contextid), 'id', '*', 0, 1);
1018 if (!empty($category)) {
1019 return reset($category);
1020 } else {
1021 return false;
1026 * Gets the default category in the most specific context.
1027 * If no categories exist yet then default ones are created in all contexts.
1029 * @param array $contexts The context objects for this context and all parent contexts.
1030 * @return object The default category - the category in the course context
1032 function question_make_default_categories($contexts) {
1033 global $DB;
1034 static $preferredlevels = array(
1035 CONTEXT_COURSE => 4,
1036 CONTEXT_MODULE => 3,
1037 CONTEXT_COURSECAT => 2,
1038 CONTEXT_SYSTEM => 1,
1041 $toreturn = null;
1042 $preferredness = 0;
1043 // If it already exists, just return it.
1044 foreach ($contexts as $key => $context) {
1045 if (!$exists = $DB->record_exists("question_categories",
1046 array('contextid' => $context->id))) {
1047 // Otherwise, we need to make one
1048 $category = new stdClass();
1049 $contextname = print_context_name($context, false, true);
1050 $category->name = get_string('defaultfor', 'question', $contextname);
1051 $category->info = get_string('defaultinfofor', 'question', $contextname);
1052 $category->contextid = $context->id;
1053 $category->parent = 0;
1054 // By default, all categories get this number, and are sorted alphabetically.
1055 $category->sortorder = 999;
1056 $category->stamp = make_unique_id_code();
1057 $category->id = $DB->insert_record('question_categories', $category);
1058 } else {
1059 $category = question_get_default_category($context->id);
1061 if ($preferredlevels[$context->contextlevel] > $preferredness && has_any_capability(
1062 array('moodle/question:usemine', 'moodle/question:useall'), $context)) {
1063 $toreturn = $category;
1064 $preferredness = $preferredlevels[$context->contextlevel];
1068 if (!is_null($toreturn)) {
1069 $toreturn = clone($toreturn);
1071 return $toreturn;
1075 * Get all the category objects, including a count of the number of questions in that category,
1076 * for all the categories in the lists $contexts.
1078 * @param mixed $contexts either a single contextid, or a comma-separated list of context ids.
1079 * @param string $sortorder used as the ORDER BY clause in the select statement.
1080 * @return array of category objects.
1082 function get_categories_for_contexts($contexts, $sortorder = 'parent, sortorder, name ASC') {
1083 global $DB;
1084 return $DB->get_records_sql("
1085 SELECT c.*, (SELECT count(1) FROM {question} q
1086 WHERE c.id = q.category AND q.hidden='0' AND q.parent='0') AS questioncount
1087 FROM {question_categories} c
1088 WHERE c.contextid IN ($contexts)
1089 ORDER BY $sortorder");
1093 * Output an array of question categories.
1095 function question_category_options($contexts, $top = false, $currentcat = 0,
1096 $popupform = false, $nochildrenof = -1) {
1097 global $CFG;
1098 $pcontexts = array();
1099 foreach ($contexts as $context) {
1100 $pcontexts[] = $context->id;
1102 $contextslist = join($pcontexts, ', ');
1104 $categories = get_categories_for_contexts($contextslist);
1106 $categories = question_add_context_in_key($categories);
1108 if ($top) {
1109 $categories = question_add_tops($categories, $pcontexts);
1111 $categories = add_indented_names($categories, $nochildrenof);
1113 // sort cats out into different contexts
1114 $categoriesarray = array();
1115 foreach ($pcontexts as $pcontext) {
1116 $contextstring = print_context_name(
1117 get_context_instance_by_id($pcontext), true, true);
1118 foreach ($categories as $category) {
1119 if ($category->contextid == $pcontext) {
1120 $cid = $category->id;
1121 if ($currentcat != $cid || $currentcat == 0) {
1122 $countstring = !empty($category->questioncount) ?
1123 " ($category->questioncount)" : '';
1124 $categoriesarray[$contextstring][$cid] = $category->indentedname.$countstring;
1129 if ($popupform) {
1130 $popupcats = array();
1131 foreach ($categoriesarray as $contextstring => $optgroup) {
1132 $group = array();
1133 foreach ($optgroup as $key => $value) {
1134 $key = str_replace($CFG->wwwroot, '', $key);
1135 $group[$key] = $value;
1137 $popupcats[] = array($contextstring => $group);
1139 return $popupcats;
1140 } else {
1141 return $categoriesarray;
1145 function question_add_context_in_key($categories) {
1146 $newcatarray = array();
1147 foreach ($categories as $id => $category) {
1148 $category->parent = "$category->parent,$category->contextid";
1149 $category->id = "$category->id,$category->contextid";
1150 $newcatarray["$id,$category->contextid"] = $category;
1152 return $newcatarray;
1155 function question_add_tops($categories, $pcontexts) {
1156 $topcats = array();
1157 foreach ($pcontexts as $context) {
1158 $newcat = new stdClass();
1159 $newcat->id = "0,$context";
1160 $newcat->name = get_string('top');
1161 $newcat->parent = -1;
1162 $newcat->contextid = $context;
1163 $topcats["0,$context"] = $newcat;
1165 //put topcats in at beginning of array - they'll be sorted into different contexts later.
1166 return array_merge($topcats, $categories);
1170 * @return array of question category ids of the category and all subcategories.
1172 function question_categorylist($categoryid) {
1173 global $DB;
1175 $subcategories = $DB->get_records('question_categories',
1176 array('parent' => $categoryid), 'sortorder ASC', 'id, 1');
1178 $categorylist = array($categoryid);
1179 foreach ($subcategories as $subcategory) {
1180 $categorylist = array_merge($categorylist, question_categorylist($subcategory->id));
1183 return $categorylist;
1186 //===========================
1187 // Import/Export Functions
1188 //===========================
1191 * Get list of available import or export formats
1192 * @param string $type 'import' if import list, otherwise export list assumed
1193 * @return array sorted list of import/export formats available
1195 function get_import_export_formats($type) {
1196 global $CFG;
1198 $fileformats = get_plugin_list('qformat');
1200 $fileformatname = array();
1201 require_once($CFG->dirroot . '/question/format.php');
1202 foreach ($fileformats as $fileformat => $fdir) {
1203 $formatfile = $fdir . '/format.php';
1204 if (is_readable($formatfile)) {
1205 include_once($formatfile);
1206 } else {
1207 continue;
1210 $classname = 'qformat_' . $fileformat;
1211 $formatclass = new $classname();
1212 if ($type == 'import') {
1213 $provided = $formatclass->provide_import();
1214 } else {
1215 $provided = $formatclass->provide_export();
1218 if ($provided) {
1219 $fileformatnames[$fileformat] = get_string($fileformat, 'qformat_' . $fileformat);
1223 textlib_get_instance()->asort($fileformatnames);
1224 return $fileformatnames;
1229 * Create a reasonable default file name for exporting questions from a particular
1230 * category.
1231 * @param object $course the course the questions are in.
1232 * @param object $category the question category.
1233 * @return string the filename.
1235 function question_default_export_filename($course, $category) {
1236 // We build a string that is an appropriate name (questions) from the lang pack,
1237 // then the corse shortname, then the question category name, then a timestamp.
1239 $base = clean_filename(get_string('exportfilename', 'question'));
1241 $dateformat = str_replace(' ', '_', get_string('exportnameformat', 'question'));
1242 $timestamp = clean_filename(userdate(time(), $dateformat, 99, false));
1244 $shortname = clean_filename($course->shortname);
1245 if ($shortname == '' || $shortname == '_' ) {
1246 $shortname = $course->id;
1249 $categoryname = clean_filename(format_string($category->name));
1251 return "{$base}-{$shortname}-{$categoryname}-{$timestamp}";
1253 return $export_name;
1257 * Converts contextlevels to strings and back to help with reading/writing contexts
1258 * to/from import/export files.
1260 * @copyright 1999 onwards Martin Dougiamas {@link http://moodle.com}
1261 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
1263 class context_to_string_translator{
1265 * @var array used to translate between contextids and strings for this context.
1267 protected $contexttostringarray = array();
1269 public function __construct($contexts) {
1270 $this->generate_context_to_string_array($contexts);
1273 public function context_to_string($contextid) {
1274 return $this->contexttostringarray[$contextid];
1277 public function string_to_context($contextname) {
1278 $contextid = array_search($contextname, $this->contexttostringarray);
1279 return $contextid;
1282 protected function generate_context_to_string_array($contexts) {
1283 if (!$this->contexttostringarray) {
1284 $catno = 1;
1285 foreach ($contexts as $context) {
1286 switch ($context->contextlevel) {
1287 case CONTEXT_MODULE :
1288 $contextstring = 'module';
1289 break;
1290 case CONTEXT_COURSE :
1291 $contextstring = 'course';
1292 break;
1293 case CONTEXT_COURSECAT :
1294 $contextstring = "cat$catno";
1295 $catno++;
1296 break;
1297 case CONTEXT_SYSTEM :
1298 $contextstring = 'system';
1299 break;
1301 $this->contexttostringarray[$context->id] = $contextstring;
1309 * Check capability on category
1311 * @param mixed $question object or id
1312 * @param string $cap 'add', 'edit', 'view', 'use', 'move'
1313 * @param integer $cachecat useful to cache all question records in a category
1314 * @return boolean this user has the capability $cap for this question $question?
1316 function question_has_capability_on($question, $cap, $cachecat = -1) {
1317 global $USER, $DB;
1319 // these are capabilities on existing questions capabilties are
1320 //set per category. Each of these has a mine and all version. Append 'mine' and 'all'
1321 $question_questioncaps = array('edit', 'view', 'use', 'move');
1322 static $questions = array();
1323 static $categories = array();
1324 static $cachedcat = array();
1325 if ($cachecat != -1 && array_search($cachecat, $cachedcat) === false) {
1326 $questions += $DB->get_records('question', array('category' => $cachecat), '', 'id,category,createdby');
1327 $cachedcat[] = $cachecat;
1329 if (!is_object($question)) {
1330 if (!isset($questions[$question])) {
1331 if (!$questions[$question] = $DB->get_record('question',
1332 array('id' => $question), 'id,category,createdby')) {
1333 print_error('questiondoesnotexist', 'question');
1336 $question = $questions[$question];
1338 if (empty($question->category)) {
1339 // This can happen when we have created a fake 'missingtype' question to
1340 // take the place of a deleted question.
1341 return false;
1343 if (!isset($categories[$question->category])) {
1344 if (!$categories[$question->category] = $DB->get_record('question_categories',
1345 array('id'=>$question->category))) {
1346 print_error('invalidcategory', 'quiz');
1349 $category = $categories[$question->category];
1350 $context = get_context_instance_by_id($category->contextid);
1352 if (array_search($cap, $question_questioncaps)!== false) {
1353 if (!has_capability('moodle/question:' . $cap . 'all', $context)) {
1354 if ($question->createdby == $USER->id) {
1355 return has_capability('moodle/question:' . $cap . 'mine', $context);
1356 } else {
1357 return false;
1359 } else {
1360 return true;
1362 } else {
1363 return has_capability('moodle/question:' . $cap, $context);
1369 * Require capability on question.
1371 function question_require_capability_on($question, $cap) {
1372 if (!question_has_capability_on($question, $cap)) {
1373 print_error('nopermissions', '', '', $cap);
1375 return true;
1379 * Get the real state - the correct question id and answer - for a random
1380 * question.
1381 * @param object $state with property answer.
1382 * @return mixed return integer real question id or false if there was an
1383 * error..
1385 function question_get_real_state($state) {
1386 global $OUTPUT;
1387 $realstate = clone($state);
1388 $matches = array();
1389 if (!preg_match('|^random([0-9]+)-(.*)|', $state->answer, $matches)) {
1390 echo $OUTPUT->notification(get_string('errorrandom', 'quiz_statistics'));
1391 return false;
1392 } else {
1393 $realstate->question = $matches[1];
1394 $realstate->answer = $matches[2];
1395 return $realstate;
1400 * @param object $context a context
1401 * @return string A URL for editing questions in this context.
1403 function question_edit_url($context) {
1404 global $CFG, $SITE;
1405 if (!has_any_capability(question_get_question_capabilities(), $context)) {
1406 return false;
1408 $baseurl = $CFG->wwwroot . '/question/edit.php?';
1409 $defaultcategory = question_get_default_category($context->id);
1410 if ($defaultcategory) {
1411 $baseurl .= 'cat=' . $defaultcategory->id . ',' . $context->id . '&amp;';
1413 switch ($context->contextlevel) {
1414 case CONTEXT_SYSTEM:
1415 return $baseurl . 'courseid=' . $SITE->id;
1416 case CONTEXT_COURSECAT:
1417 // This is nasty, becuase we can only edit questions in a course
1418 // context at the moment, so for now we just return false.
1419 return false;
1420 case CONTEXT_COURSE:
1421 return $baseurl . 'courseid=' . $context->instanceid;
1422 case CONTEXT_MODULE:
1423 return $baseurl . 'cmid=' . $context->instanceid;
1429 * Adds question bank setting links to the given navigation node if caps are met.
1431 * @param navigation_node $navigationnode The navigation node to add the question branch to
1432 * @param object $context
1433 * @return navigation_node Returns the question branch that was added
1435 function question_extend_settings_navigation(navigation_node $navigationnode, $context) {
1436 global $PAGE;
1438 if ($context->contextlevel == CONTEXT_COURSE) {
1439 $params = array('courseid'=>$context->instanceid);
1440 } else if ($context->contextlevel == CONTEXT_MODULE) {
1441 $params = array('cmid'=>$context->instanceid);
1442 } else {
1443 return;
1446 if (($cat = $PAGE->url->param('cat')) && preg_match('~\d+,\d+~', $cat)) {
1447 $params['cat'] = $cat;
1450 $questionnode = $navigationnode->add(get_string('questionbank', 'question'),
1451 new moodle_url('/question/edit.php', $params), navigation_node::TYPE_CONTAINER);
1453 $contexts = new question_edit_contexts($context);
1454 if ($contexts->have_one_edit_tab_cap('questions')) {
1455 $questionnode->add(get_string('questions', 'quiz'), new moodle_url(
1456 '/question/edit.php', $params), navigation_node::TYPE_SETTING);
1458 if ($contexts->have_one_edit_tab_cap('categories')) {
1459 $questionnode->add(get_string('categories', 'quiz'), new moodle_url(
1460 '/question/category.php', $params), navigation_node::TYPE_SETTING);
1462 if ($contexts->have_one_edit_tab_cap('import')) {
1463 $questionnode->add(get_string('import', 'quiz'), new moodle_url(
1464 '/question/import.php', $params), navigation_node::TYPE_SETTING);
1466 if ($contexts->have_one_edit_tab_cap('export')) {
1467 $questionnode->add(get_string('export', 'quiz'), new moodle_url(
1468 '/question/export.php', $params), navigation_node::TYPE_SETTING);
1471 return $questionnode;
1475 * @return array all the capabilities that relate to accessing particular questions.
1477 function question_get_question_capabilities() {
1478 return array(
1479 'moodle/question:add',
1480 'moodle/question:editmine',
1481 'moodle/question:editall',
1482 'moodle/question:viewmine',
1483 'moodle/question:viewall',
1484 'moodle/question:usemine',
1485 'moodle/question:useall',
1486 'moodle/question:movemine',
1487 'moodle/question:moveall',
1492 * @return array all the question bank capabilities.
1494 function question_get_all_capabilities() {
1495 $caps = question_get_question_capabilities();
1496 $caps[] = 'moodle/question:managecategory';
1497 $caps[] = 'moodle/question:flag';
1498 return $caps;
1501 class question_edit_contexts {
1503 public static $caps = array(
1504 'editq' => array('moodle/question:add',
1505 'moodle/question:editmine',
1506 'moodle/question:editall',
1507 'moodle/question:viewmine',
1508 'moodle/question:viewall',
1509 'moodle/question:usemine',
1510 'moodle/question:useall',
1511 'moodle/question:movemine',
1512 'moodle/question:moveall'),
1513 'questions'=>array('moodle/question:add',
1514 'moodle/question:editmine',
1515 'moodle/question:editall',
1516 'moodle/question:viewmine',
1517 'moodle/question:viewall',
1518 'moodle/question:movemine',
1519 'moodle/question:moveall'),
1520 'categories'=>array('moodle/question:managecategory'),
1521 'import'=>array('moodle/question:add'),
1522 'export'=>array('moodle/question:viewall', 'moodle/question:viewmine'));
1524 protected $allcontexts;
1527 * @param current context
1529 public function __construct($thiscontext) {
1530 $pcontextids = get_parent_contexts($thiscontext);
1531 $contexts = array($thiscontext);
1532 foreach ($pcontextids as $pcontextid) {
1533 $contexts[] = get_context_instance_by_id($pcontextid);
1535 $this->allcontexts = $contexts;
1538 * @return array all parent contexts
1540 public function all() {
1541 return $this->allcontexts;
1544 * @return object lowest context which must be either the module or course context
1546 public function lowest() {
1547 return $this->allcontexts[0];
1550 * @param string $cap capability
1551 * @return array parent contexts having capability, zero based index
1553 public function having_cap($cap) {
1554 $contextswithcap = array();
1555 foreach ($this->allcontexts as $context) {
1556 if (has_capability($cap, $context)) {
1557 $contextswithcap[] = $context;
1560 return $contextswithcap;
1563 * @param array $caps capabilities
1564 * @return array parent contexts having at least one of $caps, zero based index
1566 public function having_one_cap($caps) {
1567 $contextswithacap = array();
1568 foreach ($this->allcontexts as $context) {
1569 foreach ($caps as $cap) {
1570 if (has_capability($cap, $context)) {
1571 $contextswithacap[] = $context;
1572 break; //done with caps loop
1576 return $contextswithacap;
1579 * @param string $tabname edit tab name
1580 * @return array parent contexts having at least one of $caps, zero based index
1582 public function having_one_edit_tab_cap($tabname) {
1583 return $this->having_one_cap(self::$caps[$tabname]);
1586 * Has at least one parent context got the cap $cap?
1588 * @param string $cap capability
1589 * @return boolean
1591 public function have_cap($cap) {
1592 return (count($this->having_cap($cap)));
1596 * Has at least one parent context got one of the caps $caps?
1598 * @param array $caps capability
1599 * @return boolean
1601 public function have_one_cap($caps) {
1602 foreach ($caps as $cap) {
1603 if ($this->have_cap($cap)) {
1604 return true;
1607 return false;
1611 * Has at least one parent context got one of the caps for actions on $tabname
1613 * @param string $tabname edit tab name
1614 * @return boolean
1616 public function have_one_edit_tab_cap($tabname) {
1617 return $this->have_one_cap(self::$caps[$tabname]);
1621 * Throw error if at least one parent context hasn't got the cap $cap
1623 * @param string $cap capability
1625 public function require_cap($cap) {
1626 if (!$this->have_cap($cap)) {
1627 print_error('nopermissions', '', '', $cap);
1632 * Throw error if at least one parent context hasn't got one of the caps $caps
1634 * @param array $cap capabilities
1636 public function require_one_cap($caps) {
1637 if (!$this->have_one_cap($caps)) {
1638 $capsstring = join($caps, ', ');
1639 print_error('nopermissions', '', '', $capsstring);
1644 * Throw error if at least one parent context hasn't got one of the caps $caps
1646 * @param string $tabname edit tab name
1648 public function require_one_edit_tab_cap($tabname) {
1649 if (!$this->have_one_edit_tab_cap($tabname)) {
1650 print_error('nopermissions', '', '', 'access question edit tab '.$tabname);
1656 * Helps call file_rewrite_pluginfile_urls with the right parameters.
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) {
1671 $idsstr = '';
1672 if (!empty($ids)) {
1673 $idsstr .= implode('/', $ids);
1675 if ($itemid !== null) {
1676 $idsstr .= '/' . $itemid;
1678 return file_rewrite_pluginfile_urls($text, $file, $contextid, $component,
1679 $filearea, $idsstr, $options);
1683 * Rewrite the PLUGINFILE urls in the questiontext, when viewing the question
1684 * text outside and attempt (for example, in the question bank listing or in the
1685 * quiz statistics report).
1687 * @param string $questiontext the question text.
1688 * @param int $contextid the context the text is being displayed in.
1689 * @param string $component component
1690 * @param array $ids other IDs will be used to check file permission
1691 * @param array $options
1692 * @return string $questiontext with URLs rewritten.
1694 function question_rewrite_questiontext_preview_urls($questiontext, $contextid,
1695 $component, $questionid, $options=null) {
1697 return file_rewrite_pluginfile_urls($questiontext, 'pluginfile.php', $contextid,
1698 'question', 'questiontext_preview', "$component/$questionid", $options);
1702 * Send a file from the question text of a question.
1703 * @param int $questionid the question id
1704 * @param array $args the remaining file arguments (file path).
1705 * @param bool $forcedownload whether the user must be forced to download the file.
1707 function question_send_questiontext_file($questionid, $args, $forcedownload) {
1708 global $DB;
1710 $question = $DB->get_record_sql('
1711 SELECT q.id, qc.contextid
1712 FROM {question} q
1713 JOIN {question_categories} qc ON qc.id = q.category
1714 WHERE q.id = :id', array('id' => $questionid), MUST_EXIST);
1716 $fs = get_file_storage();
1717 $fullpath = "/$question->contextid/question/questiontext/$question->id/" . implode('/', $args);
1718 if (!$file = $fs->get_file_by_hash(sha1($fullpath)) or $file->is_directory()) {
1719 send_file_not_found();
1722 send_stored_file($file, 0, 0, $forcedownload);
1726 * Called by pluginfile.php to serve files related to the 'question' core
1727 * component and for files belonging to qtypes.
1729 * For files that relate to questions in a question_attempt, then we delegate to
1730 * a function in the component that owns the attempt (for example in the quiz,
1731 * or in core question preview) to get necessary inforation.
1733 * (Note that, at the moment, all question file areas relate to questions in
1734 * attempts, so the If at the start of the last paragraph is always true.)
1736 * Does not return, either calls send_file_not_found(); or serves the file.
1738 * @param object $course course settings object
1739 * @param object $context context object
1740 * @param string $component the name of the component we are serving files for.
1741 * @param string $filearea the name of the file area.
1742 * @param array $args the remaining bits of the file path.
1743 * @param bool $forcedownload whether the user must be forced to download the file.
1745 function question_pluginfile($course, $context, $component, $filearea, $args, $forcedownload) {
1746 global $DB, $CFG;
1748 if ($filearea === 'questiontext_preview') {
1749 $component = array_shift($args);
1750 $questionid = array_shift($args);
1752 component_callback($component, 'questiontext_preview_pluginfile', array(
1753 $context, $questionid, $args, $forcedownload));
1755 send_file_not_found();
1758 list($context, $course, $cm) = get_context_info_array($context->id);
1759 require_login($course, false, $cm);
1761 if ($filearea === 'export') {
1762 require_once($CFG->dirroot . '/question/editlib.php');
1763 $contexts = new question_edit_contexts($context);
1764 // check export capability
1765 $contexts->require_one_edit_tab_cap('export');
1766 $category_id = (int)array_shift($args);
1767 $format = array_shift($args);
1768 $cattofile = array_shift($args);
1769 $contexttofile = array_shift($args);
1770 $filename = array_shift($args);
1772 // load parent class for import/export
1773 require_once($CFG->dirroot . '/question/format.php');
1774 require_once($CFG->dirroot . '/question/editlib.php');
1775 require_once($CFG->dirroot . '/question/format/' . $format . '/format.php');
1777 $classname = 'qformat_' . $format;
1778 if (!class_exists($classname)) {
1779 send_file_not_found();
1782 $qformat = new $classname();
1784 if (!$category = $DB->get_record('question_categories', array('id' => $category_id))) {
1785 send_file_not_found();
1788 $qformat->setCategory($category);
1789 $qformat->setContexts($contexts->having_one_edit_tab_cap('export'));
1790 $qformat->setCourse($course);
1792 if ($cattofile == 'withcategories') {
1793 $qformat->setCattofile(true);
1794 } else {
1795 $qformat->setCattofile(false);
1798 if ($contexttofile == 'withcontexts') {
1799 $qformat->setContexttofile(true);
1800 } else {
1801 $qformat->setContexttofile(false);
1804 if (!$qformat->exportpreprocess()) {
1805 send_file_not_found();
1806 print_error('exporterror', 'question', $thispageurl->out());
1809 // export data to moodle file pool
1810 if (!$content = $qformat->exportprocess(true)) {
1811 send_file_not_found();
1814 send_file($content, $filename, 0, 0, true, true, $qformat->mime_type());
1817 $qubaid = (int)array_shift($args);
1818 $slot = (int)array_shift($args);
1820 $module = $DB->get_field('question_usages', 'component',
1821 array('id' => $qubaid));
1823 if ($module === 'core_question_preview') {
1824 require_once($CFG->dirroot . '/question/previewlib.php');
1825 return question_preview_question_pluginfile($course, $context,
1826 $component, $filearea, $qubaid, $slot, $args, $forcedownload);
1828 } else {
1829 $dir = get_component_directory($module);
1830 if (!file_exists("$dir/lib.php")) {
1831 send_file_not_found();
1833 include_once("$dir/lib.php");
1835 $filefunction = $module . '_question_pluginfile';
1836 if (!function_exists($filefunction)) {
1837 send_file_not_found();
1840 $filefunction($course, $context, $component, $filearea, $qubaid, $slot,
1841 $args, $forcedownload);
1843 send_file_not_found();
1848 * Serve questiontext files in the question text when they are displayed in this report.
1849 * @param context $context the context
1850 * @param int $questionid the question id
1851 * @param array $args remaining file args
1852 * @param bool $forcedownload
1854 function core_question_questiontext_preview_pluginfile($context, $questionid, $args, $forcedownload) {
1855 global $DB;
1857 // Verify that contextid matches the question.
1858 $question = $DB->get_record_sql('
1859 SELECT q.*, qc.contextid
1860 FROM {question} q
1861 JOIN {question_categories} qc ON qc.id = q.category
1862 WHERE q.id = :id AND qc.contextid = :contextid',
1863 array('id' => $questionid, 'contextid' => $context->id), MUST_EXIST);
1865 // Check the capability.
1866 list($context, $course, $cm) = get_context_info_array($context->id);
1867 require_login($course, false, $cm);
1869 question_require_capability_on($question, 'use');
1871 question_send_questiontext_file($questionid, $args, $forcedownload);
1875 * Create url for question export
1877 * @param int $contextid, current context
1878 * @param int $categoryid, categoryid
1879 * @param string $format
1880 * @param string $withcategories
1881 * @param string $ithcontexts
1882 * @param moodle_url export file url
1884 function question_make_export_url($contextid, $categoryid, $format, $withcategories,
1885 $withcontexts, $filename) {
1886 global $CFG;
1887 $urlbase = "$CFG->httpswwwroot/pluginfile.php";
1888 return moodle_url::make_file_url($urlbase,
1889 "/$contextid/question/export/{$categoryid}/{$format}/{$withcategories}" .
1890 "/{$withcontexts}/{$filename}", true);
1894 * Return a list of page types
1895 * @param string $pagetype current page type
1896 * @param stdClass $parentcontext Block's parent context
1897 * @param stdClass $currentcontext Current context of block
1899 function question_page_type_list($pagetype, $parentcontext, $currentcontext) {
1900 global $CFG;
1901 $types = array(
1902 'question-*'=>get_string('page-question-x', 'question'),
1903 'question-edit'=>get_string('page-question-edit', 'question'),
1904 'question-category'=>get_string('page-question-category', 'question'),
1905 'question-export'=>get_string('page-question-export', 'question'),
1906 'question-import'=>get_string('page-question-import', 'question')
1908 if ($currentcontext->contextlevel == CONTEXT_COURSE) {
1909 require_once($CFG->dirroot . '/course/lib.php');
1910 return array_merge(course_page_type_list($pagetype, $parentcontext, $currentcontext), $types);
1911 } else {
1912 return $types;