2 // This file is part of Moodle - http://moodle.org/
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.
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/>.
18 * The default questiontype class.
21 * @subpackage questiontypes
22 * @copyright 1999 onwards Martin Dougiamas {@link http://moodle.com}
23 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
27 defined('MOODLE_INTERNAL') ||
die();
29 require_once($CFG->dirroot
. '/question/engine/lib.php');
33 * This is the base class for Moodle question types.
35 * There are detailed comments on each method, explaining what the method is
36 * for, and the circumstances under which you might need to override it.
38 * Note: the questiontype API should NOT be considered stable yet. Very few
39 * question types have been produced yet, so we do not yet know all the places
40 * where the current API is insufficient. I would rather learn from the
41 * experiences of the first few question type implementors, and improve the
42 * interface to meet their needs, rather the freeze the API prematurely and
43 * condem everyone to working round a clunky interface for ever afterwards.
45 * @copyright 1999 onwards Martin Dougiamas {@link http://moodle.com}
46 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
49 protected $fileoptions = array(
55 public function __construct() {
59 * @return string the name of this question type.
61 public function name() {
62 return substr(get_class($this), 6);
66 * @return string the full frankenstyle name for this plugin.
68 public function plugin_name() {
69 return get_class($this);
73 * @return string the name of this question type in the user's language.
74 * You should not need to override this method, the default behaviour should be fine.
76 public function local_name() {
77 return get_string('pluginname', $this->plugin_name());
81 * The name this question should appear as in the create new question
82 * dropdown. Override this method to return false if you don't want your
83 * question type to be createable, for example if it is an abstract base type,
84 * otherwise, you should not need to override this method.
86 * @return mixed the desired string, or false to hide this question type in the menu.
88 public function menu_name() {
89 return $this->local_name();
93 * @return bool override this to return false if this is not really a
94 * question type, for example the description question type is not
95 * really a question type.
97 public function is_real_question_type() {
102 * @return bool true if this question type sometimes requires manual grading.
104 public function is_manual_graded() {
109 * @param object $question a question of this type.
110 * @param string $otherquestionsinuse comma-separate list of other question ids in this attempt.
111 * @return bool true if a particular instance of this question requires manual grading.
113 public function is_question_manual_graded($question, $otherquestionsinuse) {
114 return $this->is_manual_graded();
118 * @return bool true if this question type can be used by the random question type.
120 public function is_usable_by_random() {
125 * Whether this question type can perform a frequency analysis of student
128 * If this method returns true, you must implement the get_possible_responses
129 * method, and the question_definition class must implement the
130 * classify_response method.
132 * @return bool whether this report can analyse all the student reponses
133 * for things like the quiz statistics report.
135 public function can_analyse_responses() {
136 // This works in most cases.
137 return !$this->is_manual_graded();
141 * @return whether the question_answers.answer field needs to have
142 * restore_decode_content_links_worker called on it.
144 public function has_html_answers() {
149 * If your question type has a table that extends the question table, and
150 * you want the base class to automatically save, backup and restore the extra fields,
151 * override this method to return an array wherer the first element is the table name,
152 * and the subsequent entries are the column names (apart from id and questionid).
154 * @return mixed array as above, or null to tell the base class to do nothing.
156 public function extra_question_fields() {
161 * If you use extra_question_fields, overload this function to return question id field name
162 * in case you table use another name for this column
164 public function questionid_column_name() {
169 * If your question type has a table that extends the question_answers table,
170 * make this method return an array wherer the first element is the table name,
171 * and the subsequent entries are the column names (apart from id and answerid).
173 * @return mixed array as above, or null to tell the base class to do nothing.
175 public function extra_answer_fields() {
180 * If the quetsion type uses files in responses, then this method should
181 * return an array of all the response variables that might have corresponding
182 * files. For example, the essay qtype returns array('attachments', 'answers').
184 * @return array response variable names that may have associated files.
186 public function response_file_areas() {
191 * Return an instance of the question editing form definition. This looks for a
192 * class called edit_{$this->name()}_question_form in the file
193 * question/type/{$this->name()}/edit_{$this->name()}_question_form.php
194 * and if it exists returns an instance of it.
196 * @param string $submiturl passed on to the constructor call.
197 * @return object an instance of the form definition, or null if one could not be found.
199 public function create_editing_form($submiturl, $question, $category,
200 $contexts, $formeditable) {
202 require_once($CFG->dirroot
. '/question/type/edit_question_form.php');
203 $definitionfile = $CFG->dirroot
. '/question/type/' . $this->name() .
204 '/edit_' . $this->name() . '_form.php';
205 if (!is_readable($definitionfile) ||
!is_file($definitionfile)) {
206 throw new coding_exception($this->plugin_name() .
207 ' is missing the definition of its editing formin file ' .
208 $definitionfile . '.');
210 require_once($definitionfile);
211 $classname = $this->plugin_name() . '_edit_form';
212 if (!class_exists($classname)) {
213 throw new coding_exception($this->plugin_name() .
214 ' does not define the class ' . $this->plugin_name() .
217 return new $classname($submiturl, $question, $category, $contexts, $formeditable);
221 * @return string the full path of the folder this plugin's files live in.
223 public function plugin_dir() {
225 return $CFG->dirroot
. '/question/type/' . $this->name();
229 * @return string the URL of the folder this plugin's files live in.
231 public function plugin_baseurl() {
233 return $CFG->wwwroot
. '/question/type/' . $this->name();
237 * This method should be overriden if you want to include a special heading or some other
238 * html on a question editing page besides the question editing form.
240 * @param question_edit_form $mform a child of question_edit_form
241 * @param object $question
242 * @param string $wizardnow is '' for first page.
244 public function display_question_editing_page($mform, $question, $wizardnow) {
246 $heading = $this->get_heading(empty($question->id
));
248 echo $OUTPUT->heading_with_help($heading, 'pluginname', $this->plugin_name());
250 $permissionstrs = array();
251 if (!empty($question->id
)) {
252 if ($question->formoptions
->canedit
) {
253 $permissionstrs[] = get_string('permissionedit', 'question');
255 if ($question->formoptions
->canmove
) {
256 $permissionstrs[] = get_string('permissionmove', 'question');
258 if ($question->formoptions
->cansaveasnew
) {
259 $permissionstrs[] = get_string('permissionsaveasnew', 'question');
262 if (!$question->formoptions
->movecontext
&& count($permissionstrs)) {
263 echo $OUTPUT->heading(get_string('permissionto', 'question'), 3);
265 foreach ($permissionstrs as $permissionstr) {
266 $html .= '<li>'.$permissionstr.'</li>';
269 echo $OUTPUT->box($html, 'boxwidthnarrow boxaligncenter generalbox');
275 * Method called by display_question_editing_page and by question.php to get
276 * heading for breadcrumbs.
278 * @return string the heading
280 public function get_heading($adding = false) {
282 $string = 'pluginnameadding';
284 $string = 'pluginnameediting';
286 return get_string($string, $this->plugin_name());
290 * Set any missing settings for this question to the default values. This is
291 * called before displaying the question editing form.
293 * @param object $questiondata the question data, loaded from the databsae,
294 * or more likely a newly created question object that is only partially
297 public function set_default_options($questiondata) {
301 * Saves (creates or updates) a question.
303 * Given some question info and some data about the answers
304 * this function parses, organises and saves the question
305 * It is used by {@link question.php} when saving new data from
306 * a form, and also by {@link import.php} when importing questions
307 * This function in turn calls {@link save_question_options}
308 * to save question-type specific data.
310 * Whether we are saving a new question or updating an existing one can be
311 * determined by testing !empty($question->id). If it is not empty, we are updating.
313 * The question will be saved in category $form->category.
315 * @param object $question the question object which should be updated. For a
316 * new question will be mostly empty.
317 * @param object $form the object containing the information to save, as if
318 * from the question editing form.
319 * @param object $course not really used any more.
320 * @return object On success, return the new question object. On failure,
321 * return an object as follows. If the error object has an errors field,
322 * display that as an error message. Otherwise, the editing form will be
323 * redisplayed with validation errors, from validation_errors field, which
324 * is itself an object, shown next to the form fields. (I don't think this
325 * is accurate any more.)
327 public function save_question($question, $form) {
328 global $USER, $DB, $OUTPUT;
330 list($question->category
) = explode(',', $form->category
);
331 $context = $this->get_context_by_category_id($question->category
);
333 // This default implementation is suitable for most
336 // First, save the basic question itself.
337 $question->name
= trim($form->name
);
338 $question->parent
= isset($form->parent
) ?
$form->parent
: 0;
339 $question->length
= $this->actual_number_of_questions($question);
340 $question->penalty
= isset($form->penalty
) ?
$form->penalty
: 0;
342 if (empty($form->questiontext
['text'])) {
343 $question->questiontext
= '';
345 $question->questiontext
= trim($form->questiontext
['text']);
347 $question->questiontextformat
= !empty($form->questiontext
['format']) ?
348 $form->questiontext
['format'] : 0;
350 if (empty($form->generalfeedback
['text'])) {
351 $question->generalfeedback
= '';
353 $question->generalfeedback
= trim($form->generalfeedback
['text']);
355 $question->generalfeedbackformat
= !empty($form->generalfeedback
['format']) ?
356 $form->generalfeedback
['format'] : 0;
358 if (empty($question->name
)) {
359 $question->name
= shorten_text(strip_tags($form->questiontext
['text']), 15);
360 if (empty($question->name
)) {
361 $question->name
= '-';
365 if ($question->penalty
> 1 or $question->penalty
< 0) {
366 $question->errors
['penalty'] = get_string('invalidpenalty', 'question');
369 if (isset($form->defaultmark
)) {
370 $question->defaultmark
= $form->defaultmark
;
373 // If the question is new, create it.
374 if (empty($question->id
)) {
375 // Set the unique code.
376 $question->stamp
= make_unique_id_code();
377 $question->createdby
= $USER->id
;
378 $question->timecreated
= time();
379 $question->id
= $DB->insert_record('question', $question);
382 // Now, whether we are updating a existing question, or creating a new
383 // one, we have to do the files processing and update the record.
384 // Question already exists, update.
385 $question->modifiedby
= $USER->id
;
386 $question->timemodified
= time();
388 if (!empty($question->questiontext
) && !empty($form->questiontext
['itemid'])) {
389 $question->questiontext
= file_save_draft_area_files($form->questiontext
['itemid'],
390 $context->id
, 'question', 'questiontext', (int)$question->id
,
391 $this->fileoptions
, $question->questiontext
);
393 if (!empty($question->generalfeedback
) && !empty($form->generalfeedback
['itemid'])) {
394 $question->generalfeedback
= file_save_draft_area_files(
395 $form->generalfeedback
['itemid'], $context->id
,
396 'question', 'generalfeedback', (int)$question->id
,
397 $this->fileoptions
, $question->generalfeedback
);
399 $DB->update_record('question', $question);
401 // Now to save all the answers and type-specific options.
402 $form->id
= $question->id
;
403 $form->qtype
= $question->qtype
;
404 $form->category
= $question->category
;
405 $form->questiontext
= $question->questiontext
;
406 $form->questiontextformat
= $question->questiontextformat
;
408 $form->context
= $context;
410 $result = $this->save_question_options($form);
412 if (!empty($result->error
)) {
413 print_error($result->error
);
416 if (!empty($result->notice
)) {
417 notice($result->notice
, "question.php?id=$question->id");
420 if (!empty($result->noticeyesno
)) {
421 throw new coding_exception(
422 '$result->noticeyesno no longer supported in save_question.');
425 // Give the question a unique version stamp determined by question_hash().
426 $DB->set_field('question', 'version', question_hash($question),
427 array('id' => $question->id
));
433 * Saves question-type specific options
435 * This is called by {@link save_question()} to save the question-type specific data
436 * @return object $result->error or $result->noticeyesno or $result->notice
437 * @param object $question This holds the information from the editing form,
438 * it is not a standard question object.
440 public function save_question_options($question) {
442 $extraquestionfields = $this->extra_question_fields();
444 if (is_array($extraquestionfields)) {
445 $question_extension_table = array_shift($extraquestionfields);
447 $function = 'update_record';
448 $questionidcolname = $this->questionid_column_name();
449 $options = $DB->get_record($question_extension_table,
450 array($questionidcolname => $question->id
));
452 $function = 'insert_record';
453 $options = new stdClass();
454 $options->$questionidcolname = $question->id
;
456 foreach ($extraquestionfields as $field) {
457 if (property_exists($question, $field)) {
458 $options->$field = $question->$field;
462 $DB->{$function}($question_extension_table, $options);
465 $extraanswerfields = $this->extra_answer_fields();
466 // TODO save the answers, with any extra data.
469 public function save_hints($formdata, $withparts = false) {
471 $context = $formdata->context
;
473 $oldhints = $DB->get_records('question_hints',
474 array('questionid' => $formdata->id
), 'id ASC');
476 if (!empty($formdata->hint
)) {
477 $numhints = max(array_keys($formdata->hint
)) +
1;
483 if (!empty($formdata->hintclearwrong
)) {
484 $numclears = max(array_keys($formdata->hintclearwrong
)) +
1;
488 if (!empty($formdata->hintshownumcorrect
)) {
489 $numshows = max(array_keys($formdata->hintshownumcorrect
)) +
1;
493 $numhints = max($numhints, $numclears, $numshows);
496 for ($i = 0; $i < $numhints; $i +
= 1) {
497 if (html_is_blank($formdata->hint
[$i]['text'])) {
498 $formdata->hint
[$i]['text'] = '';
502 $clearwrong = !empty($formdata->hintclearwrong
[$i]);
503 $shownumcorrect = !empty($formdata->hintshownumcorrect
[$i]);
506 if (empty($formdata->hint
[$i]['text']) && empty($clearwrong) &&
507 empty($shownumcorrect)) {
511 // Update an existing hint if possible.
512 $hint = array_shift($oldhints);
514 $hint = new stdClass();
515 $hint->questionid
= $formdata->id
;
517 $hint->id
= $DB->insert_record('question_hints', $hint);
520 $hint->hint
= $this->import_or_save_files($formdata->hint
[$i],
521 $context, 'question', 'hint', $hint->id
);
522 $hint->hintformat
= $formdata->hint
[$i]['format'];
524 $hint->clearwrong
= $clearwrong;
525 $hint->shownumcorrect
= $shownumcorrect;
527 $DB->update_record('question_hints', $hint);
530 // Delete any remaining old hints.
531 $fs = get_file_storage();
532 foreach ($oldhints as $oldhint) {
533 $fs->delete_area_files($context->id
, 'question', 'hint', $oldhint->id
);
534 $DB->delete_records('question_hints', array('id' => $oldhint->id
));
539 * Can be used to {@link save_question_options()} to transfer the combined
540 * feedback fields from $formdata to $options.
541 * @param object $options the $question->options object being built.
542 * @param object $formdata the data from the form.
543 * @param object $context the context the quetsion is being saved into.
544 * @param bool $withparts whether $options->shownumcorrect should be set.
546 protected function save_combined_feedback_helper($options, $formdata,
547 $context, $withparts = false) {
548 $options->correctfeedback
= $this->import_or_save_files($formdata->correctfeedback
,
549 $context, 'question', 'correctfeedback', $formdata->id
);
550 $options->correctfeedbackformat
= $formdata->correctfeedback
['format'];
552 $options->partiallycorrectfeedback
= $this->import_or_save_files(
553 $formdata->partiallycorrectfeedback
,
554 $context, 'question', 'partiallycorrectfeedback', $formdata->id
);
555 $options->partiallycorrectfeedbackformat
= $formdata->partiallycorrectfeedback
['format'];
557 $options->incorrectfeedback
= $this->import_or_save_files($formdata->incorrectfeedback
,
558 $context, 'question', 'incorrectfeedback', $formdata->id
);
559 $options->incorrectfeedbackformat
= $formdata->incorrectfeedback
['format'];
562 $options->shownumcorrect
= !empty($formdata->shownumcorrect
);
569 * Loads the question type specific options for the question.
571 * This function loads any question type specific options for the
572 * question from the database into the question object. This information
573 * is placed in the $question->options field. A question type is
574 * free, however, to decide on a internal structure of the options field.
575 * @return bool Indicates success or failure.
576 * @param object $question The question object for the question. This object
577 * should be updated to include the question type
578 * specific information (it is passed by reference).
580 public function get_question_options($question) {
581 global $CFG, $DB, $OUTPUT;
583 if (!isset($question->options
)) {
584 $question->options
= new stdClass();
587 $extraquestionfields = $this->extra_question_fields();
588 if (is_array($extraquestionfields)) {
589 $question_extension_table = array_shift($extraquestionfields);
590 $extra_data = $DB->get_record($question_extension_table,
591 array($this->questionid_column_name() => $question->id
),
592 implode(', ', $extraquestionfields));
594 foreach ($extraquestionfields as $field) {
595 $question->options
->$field = $extra_data->$field;
598 echo $OUTPUT->notification('Failed to load question options from the table ' .
599 $question_extension_table . ' for questionid ' . $question->id
);
604 $extraanswerfields = $this->extra_answer_fields();
605 if (is_array($extraanswerfields)) {
606 $answer_extension_table = array_shift($extraanswerfields);
607 $question->options
->answers
= $DB->get_records_sql("
608 SELECT qa.*, qax." . implode(', qax.', $extraanswerfields) . "
609 FROM {question_answers} qa, {{$answer_extension_table}} qax
610 WHERE qa.question = ? AND qax.answerid = qa.id
611 ORDER BY qa.id", array($question->id
));
612 if (!$question->options
->answers
) {
613 echo $OUTPUT->notification('Failed to load question answers from the table ' .
614 $answer_extension_table . 'for questionid ' . $question->id
);
618 // Don't check for success or failure because some question types do
619 // not use the answers table.
620 $question->options
->answers
= $DB->get_records('question_answers',
621 array('question' => $question->id
), 'id ASC');
624 $question->hints
= $DB->get_records('question_hints',
625 array('questionid' => $question->id
), 'id ASC');
631 * Create an appropriate question_definition for the question of this type
632 * using data loaded from the database.
633 * @param object $questiondata the question data loaded from the database.
634 * @return question_definition the corresponding question_definition.
636 public function make_question($questiondata) {
637 $question = $this->make_question_instance($questiondata);
638 $this->initialise_question_instance($question, $questiondata);
643 * Create an appropriate question_definition for the question of this type
644 * using data loaded from the database.
645 * @param object $questiondata the question data loaded from the database.
646 * @return question_definition an instance of the appropriate question_definition subclass.
647 * Still needs to be initialised.
649 protected function make_question_instance($questiondata) {
650 question_bank
::load_question_definition_classes($this->name());
651 $class = 'qtype_' . $this->name() . '_question';
656 * Initialise the common question_definition fields.
657 * @param question_definition $question the question_definition we are creating.
658 * @param object $questiondata the question data loaded from the database.
660 protected function initialise_question_instance(question_definition
$question, $questiondata) {
661 $question->id
= $questiondata->id
;
662 $question->category
= $questiondata->category
;
663 $question->contextid
= $questiondata->contextid
;
664 $question->parent
= $questiondata->parent
;
665 $question->qtype
= $this;
666 $question->name
= $questiondata->name
;
667 $question->questiontext
= $questiondata->questiontext
;
668 $question->questiontextformat
= $questiondata->questiontextformat
;
669 $question->generalfeedback
= $questiondata->generalfeedback
;
670 $question->generalfeedbackformat
= $questiondata->generalfeedbackformat
;
671 $question->defaultmark
= $questiondata->defaultmark +
0;
672 $question->length
= $questiondata->length
;
673 $question->penalty
= $questiondata->penalty
;
674 $question->stamp
= $questiondata->stamp
;
675 $question->version
= $questiondata->version
;
676 $question->hidden
= $questiondata->hidden
;
677 $question->timecreated
= $questiondata->timecreated
;
678 $question->timemodified
= $questiondata->timemodified
;
679 $question->createdby
= $questiondata->createdby
;
680 $question->modifiedby
= $questiondata->modifiedby
;
682 // Fill extra question fields values.
683 $extraquestionfields = $this->extra_question_fields();
684 if (is_array($extraquestionfields)) {
686 array_shift($extraquestionfields);
687 foreach ($extraquestionfields as $field) {
688 $question->$field = $questiondata->options
->$field;
692 $this->initialise_question_hints($question, $questiondata);
696 * Initialise question_definition::hints field.
697 * @param question_definition $question the question_definition we are creating.
698 * @param object $questiondata the question data loaded from the database.
700 protected function initialise_question_hints(question_definition
$question, $questiondata) {
701 if (empty($questiondata->hints
)) {
704 foreach ($questiondata->hints
as $hint) {
705 $question->hints
[] = $this->make_hint($hint);
710 * Create a question_hint, or an appropriate subclass for this question,
711 * from a row loaded from the database.
712 * @param object $hint the DB row from the question hints table.
713 * @return question_hint
715 protected function make_hint($hint) {
716 return question_hint
::load_from_record($hint);
720 * Initialise the combined feedback fields.
721 * @param question_definition $question the question_definition we are creating.
722 * @param object $questiondata the question data loaded from the database.
723 * @param bool $withparts whether to set the shownumcorrect field.
725 protected function initialise_combined_feedback(question_definition
$question,
726 $questiondata, $withparts = false) {
727 $question->correctfeedback
= $questiondata->options
->correctfeedback
;
728 $question->correctfeedbackformat
= $questiondata->options
->correctfeedbackformat
;
729 $question->partiallycorrectfeedback
= $questiondata->options
->partiallycorrectfeedback
;
730 $question->partiallycorrectfeedbackformat
=
731 $questiondata->options
->partiallycorrectfeedbackformat
;
732 $question->incorrectfeedback
= $questiondata->options
->incorrectfeedback
;
733 $question->incorrectfeedbackformat
= $questiondata->options
->incorrectfeedbackformat
;
735 $question->shownumcorrect
= $questiondata->options
->shownumcorrect
;
740 * Initialise question_definition::answers field.
741 * @param question_definition $question the question_definition we are creating.
742 * @param object $questiondata the question data loaded from the database.
743 * @param bool $forceplaintextanswers most qtypes assume that answers are
744 * FORMAT_PLAIN, and dont use the answerformat DB column (it contains
745 * the default 0 = FORMAT_MOODLE). Therefore, by default this method
746 * ingores answerformat. Pass false here to use answerformat. For example
747 * multichoice does this.
749 protected function initialise_question_answers(question_definition
$question,
750 $questiondata, $forceplaintextanswers = true) {
751 $question->answers
= array();
752 if (empty($questiondata->options
->answers
)) {
755 foreach ($questiondata->options
->answers
as $a) {
756 $question->answers
[$a->id
] = new question_answer($a->id
, $a->answer
,
757 $a->fraction
, $a->feedback
, $a->feedbackformat
);
758 if (!$forceplaintextanswers) {
759 $question->answers
[$a->id
]->answerformat
= $a->answerformat
;
765 * Deletes the question-type specific data when a question is deleted.
766 * @param int $question the question being deleted.
767 * @param int $contextid the context this quesiotn belongs to.
769 public function delete_question($questionid, $contextid) {
772 $this->delete_files($questionid, $contextid);
774 $extraquestionfields = $this->extra_question_fields();
775 if (is_array($extraquestionfields)) {
776 $question_extension_table = array_shift($extraquestionfields);
777 $DB->delete_records($question_extension_table,
778 array($this->questionid_column_name() => $questionid));
781 $extraanswerfields = $this->extra_answer_fields();
782 if (is_array($extraanswerfields)) {
783 $answer_extension_table = array_shift($extraanswerfields);
784 $DB->delete_records_select($answer_extension_table,
785 'answerid IN (SELECT qa.id FROM {question_answers} qa WHERE qa.question = ?)',
789 $DB->delete_records('question_answers', array('question' => $questionid));
791 $DB->delete_records('question_hints', array('questionid' => $questionid));
795 * Returns the number of question numbers which are used by the question
797 * This function returns the number of question numbers to be assigned
798 * to the question. Most question types will have length one; they will be
799 * assigned one number. The 'description' type, however does not use up a
800 * number and so has a length of zero. Other question types may wish to
801 * handle a bundle of questions and hence return a number greater than one.
802 * @return int The number of question numbers which should be
803 * assigned to the question.
804 * @param object $question The question whose length is to be determined.
805 * Question type specific information is included.
807 public function actual_number_of_questions($question) {
808 // By default, each question is given one number.
813 * @param object $question
814 * @return number|null either a fraction estimating what the student would
815 * score by guessing, or null, if it is not possible to estimate.
817 public function get_random_guess_score($questiondata) {
822 * This method should return all the possible types of response that are
823 * recognised for this question.
825 * The question is modelled as comprising one or more subparts. For each
826 * subpart, there are one or more classes that that students response
827 * might fall into, each of those classes earning a certain score.
829 * For example, in a shortanswer question, there is only one subpart, the
830 * text entry field. The response the student gave will be classified according
831 * to which of the possible $question->options->answers it matches.
833 * For the matching question type, there will be one subpart for each
834 * question stem, and for each stem, each of the possible choices is a class
835 * of student's response.
837 * A response is an object with two fields, ->responseclass is a string
838 * presentation of that response, and ->fraction, the credit for a response
841 * Array keys have no specific meaning, but must be unique, and must be
842 * the same if this function is called repeatedly.
844 * @param object $question the question definition data.
845 * @return array keys are subquestionid, values are arrays of possible
846 * responses to that subquestion.
848 public function get_possible_responses($questiondata) {
853 * Utility method used by {@link qtype_renderer::head_code()}. It looks
854 * for any of the files script.js or script.php that exist in the plugin
855 * folder and ensures they get included.
857 public function find_standard_scripts() {
860 $plugindir = $this->plugin_dir();
861 $plugindirrel = 'question/type/' . $this->name();
863 if (file_exists($plugindir . '/script.js')) {
864 $PAGE->requires
->js('/' . $plugindirrel . '/script.js');
866 if (file_exists($plugindir . '/script.php')) {
867 $PAGE->requires
->js('/' . $plugindirrel . '/script.php');
872 * Returns true if the editing wizard is finished, false otherwise.
874 * The default implementation returns true, which is suitable for all question-
875 * types that only use one editing form. This function is used in
876 * question.php to decide whether we can regrade any states of the edited
877 * question and redirect to edit.php.
879 * The dataset dependent question-type, which is extended by the calculated
880 * question-type, overwrites this method because it uses multiple pages (i.e.
881 * a wizard) to set up the question and associated datasets.
883 * @param object $form The data submitted by the previous page.
885 * @return bool Whether the wizard's last page was submitted or not.
887 public function finished_edit_wizard($form) {
888 // In the default case there is only one edit page.
892 // IMPORT/EXPORT FUNCTIONS --------------------------------- .
895 * Imports question from the Moodle XML format
897 * Imports question using information from extra_question_fields function
898 * If some of you fields contains id's you'll need to reimplement this
900 public function import_from_xml($data, $question, qformat_xml
$format, $extra=null) {
901 $question_type = $data['@']['type'];
902 if ($question_type != $this->name()) {
906 $extraquestionfields = $this->extra_question_fields();
907 if (!is_array($extraquestionfields)) {
912 array_shift($extraquestionfields);
913 $qo = $format->import_headers($data);
914 $qo->qtype
= $question_type;
916 foreach ($extraquestionfields as $field) {
917 $qo->$field = $format->getpath($data, array('#', $field, 0, '#'), '');
920 // Run through the answers.
921 $answers = $data['#']['answer'];
923 $extraanswersfields = $this->extra_answer_fields();
924 if (is_array($extraanswersfields)) {
925 array_shift($extraanswersfields);
927 foreach ($answers as $answer) {
928 $ans = $format->import_answer($answer);
929 if (!$this->has_html_answers()) {
930 $qo->answer
[$a_count] = $ans->answer
['text'];
932 $qo->answer
[$a_count] = $ans->answer
;
934 $qo->fraction
[$a_count] = $ans->fraction
;
935 $qo->feedback
[$a_count] = $ans->feedback
;
936 if (is_array($extraanswersfields)) {
937 foreach ($extraanswersfields as $field) {
938 $qo->{$field}[$a_count] =
939 $format->getpath($answer, array('#', $field, 0, '#'), '');
948 * Export question to the Moodle XML format
950 * Export question using information from extra_question_fields function
951 * If some of you fields contains id's you'll need to reimplement this
953 public function export_to_xml($question, qformat_xml
$format, $extra=null) {
954 $extraquestionfields = $this->extra_question_fields();
955 if (!is_array($extraquestionfields)) {
960 array_shift($extraquestionfields);
962 foreach ($extraquestionfields as $field) {
963 $exportedvalue = $format->xml_escape($question->options
->$field);
964 $expout .= " <$field>{$exportedvalue}</$field>\n";
967 $extraanswersfields = $this->extra_answer_fields();
968 if (is_array($extraanswersfields)) {
969 array_shift($extraanswersfields);
971 foreach ($question->options
->answers
as $answer) {
973 if (is_array($extraanswersfields)) {
974 foreach ($extraanswersfields as $field) {
975 $exportedvalue = $format->xml_escape($answer->$field);
976 $extra .= " <{$field}>{$exportedvalue}</{$field}>\n";
980 $expout .= $format->write_answer($answer, $extra);
986 * Abstract function implemented by each question type. It runs all the code
987 * required to set up and save a question of any type for testing purposes.
988 * Alternate DB table prefix may be used to facilitate data deletion.
990 public function generate_test($name, $courseid=null) {
991 $form = new stdClass();
993 $form->questiontextformat
= 1;
994 $form->questiontext
= 'test question, generated by script';
995 $form->defaultmark
= 1;
996 $form->penalty
= 0.3333333;
997 $form->generalfeedback
= "Well done";
999 $context = context_course
::instance($courseid);
1000 $newcategory = question_make_default_categories(array($context));
1001 $form->category
= $newcategory->id
. ',1';
1003 $question = new stdClass();
1004 $question->courseid
= $courseid;
1005 $question->qtype
= $this->qtype
;
1006 return array($form, $question);
1010 * Get question context by category id
1011 * @param int $category
1012 * @return object $context
1014 protected function get_context_by_category_id($category) {
1016 $contextid = $DB->get_field('question_categories', 'contextid', array('id'=>$category));
1017 $context = context
::instance_by_id($contextid, IGNORE_MISSING
);
1022 * Save the file belonging to one text field.
1024 * @param array $field the data from the form (or from import). This will
1025 * normally have come from the formslib editor element, so it will be an
1026 * array with keys 'text', 'format' and 'itemid'. However, when we are
1027 * importing, it will be an array with keys 'text', 'format' and 'files'
1028 * @param object $context the context the question is in.
1029 * @param string $component indentifies the file area question.
1030 * @param string $filearea indentifies the file area questiontext,
1031 * generalfeedback, answerfeedback, etc.
1032 * @param int $itemid identifies the file area.
1034 * @return string the text for this field, after files have been processed.
1036 protected function import_or_save_files($field, $context, $component, $filearea, $itemid) {
1037 if (!empty($field['itemid'])) {
1038 // This is the normal case. We are safing the questions editing form.
1039 return file_save_draft_area_files($field['itemid'], $context->id
, $component,
1040 $filearea, $itemid, $this->fileoptions
, trim($field['text']));
1042 } else if (!empty($field['files'])) {
1043 // This is the case when we are doing an import.
1044 foreach ($field['files'] as $file) {
1045 $this->import_file($context, $component, $filearea, $itemid, $file);
1048 return trim($field['text']);
1052 * Move all the files belonging to this question from one context to another.
1053 * @param int $questionid the question being moved.
1054 * @param int $oldcontextid the context it is moving from.
1055 * @param int $newcontextid the context it is moving to.
1057 public function move_files($questionid, $oldcontextid, $newcontextid) {
1058 $fs = get_file_storage();
1059 $fs->move_area_files_to_new_context($oldcontextid,
1060 $newcontextid, 'question', 'questiontext', $questionid);
1061 $fs->move_area_files_to_new_context($oldcontextid,
1062 $newcontextid, 'question', 'generalfeedback', $questionid);
1066 * Move all the files belonging to this question's answers when the question
1067 * is moved from one context to another.
1068 * @param int $questionid the question being moved.
1069 * @param int $oldcontextid the context it is moving from.
1070 * @param int $newcontextid the context it is moving to.
1071 * @param bool $answerstoo whether there is an 'answer' question area,
1072 * as well as an 'answerfeedback' one. Default false.
1074 protected function move_files_in_answers($questionid, $oldcontextid,
1075 $newcontextid, $answerstoo = false) {
1077 $fs = get_file_storage();
1079 $answerids = $DB->get_records_menu('question_answers',
1080 array('question' => $questionid), 'id', 'id,1');
1081 foreach ($answerids as $answerid => $notused) {
1083 $fs->move_area_files_to_new_context($oldcontextid,
1084 $newcontextid, 'question', 'answer', $answerid);
1086 $fs->move_area_files_to_new_context($oldcontextid,
1087 $newcontextid, 'question', 'answerfeedback', $answerid);
1092 * Move all the files belonging to this question's hints when the question
1093 * is moved from one context to another.
1094 * @param int $questionid the question being moved.
1095 * @param int $oldcontextid the context it is moving from.
1096 * @param int $newcontextid the context it is moving to.
1097 * @param bool $answerstoo whether there is an 'answer' question area,
1098 * as well as an 'answerfeedback' one. Default false.
1100 protected function move_files_in_hints($questionid, $oldcontextid, $newcontextid) {
1102 $fs = get_file_storage();
1104 $hintids = $DB->get_records_menu('question_hints',
1105 array('questionid' => $questionid), 'id', 'id,1');
1106 foreach ($hintids as $hintid => $notused) {
1107 $fs->move_area_files_to_new_context($oldcontextid,
1108 $newcontextid, 'question', 'hint', $hintid);
1113 * Move all the files belonging to this question's answers when the question
1114 * is moved from one context to another.
1115 * @param int $questionid the question being moved.
1116 * @param int $oldcontextid the context it is moving from.
1117 * @param int $newcontextid the context it is moving to.
1118 * @param bool $answerstoo whether there is an 'answer' question area,
1119 * as well as an 'answerfeedback' one. Default false.
1121 protected function move_files_in_combined_feedback($questionid, $oldcontextid,
1124 $fs = get_file_storage();
1126 $fs->move_area_files_to_new_context($oldcontextid,
1127 $newcontextid, 'question', 'correctfeedback', $questionid);
1128 $fs->move_area_files_to_new_context($oldcontextid,
1129 $newcontextid, 'question', 'partiallycorrectfeedback', $questionid);
1130 $fs->move_area_files_to_new_context($oldcontextid,
1131 $newcontextid, 'question', 'incorrectfeedback', $questionid);
1135 * Delete all the files belonging to this question.
1136 * @param int $questionid the question being deleted.
1137 * @param int $contextid the context the question is in.
1139 protected function delete_files($questionid, $contextid) {
1140 $fs = get_file_storage();
1141 $fs->delete_area_files($contextid, 'question', 'questiontext', $questionid);
1142 $fs->delete_area_files($contextid, 'question', 'generalfeedback', $questionid);
1146 * Delete all the files belonging to this question's answers.
1147 * @param int $questionid the question being deleted.
1148 * @param int $contextid the context the question is in.
1149 * @param bool $answerstoo whether there is an 'answer' question area,
1150 * as well as an 'answerfeedback' one. Default false.
1152 protected function delete_files_in_answers($questionid, $contextid, $answerstoo = false) {
1154 $fs = get_file_storage();
1156 $answerids = $DB->get_records_menu('question_answers',
1157 array('question' => $questionid), 'id', 'id,1');
1158 foreach ($answerids as $answerid => $notused) {
1160 $fs->delete_area_files($contextid, 'question', 'answer', $answerid);
1162 $fs->delete_area_files($contextid, 'question', 'answerfeedback', $answerid);
1167 * Delete all the files belonging to this question's hints.
1168 * @param int $questionid the question being deleted.
1169 * @param int $contextid the context the question is in.
1171 protected function delete_files_in_hints($questionid, $contextid) {
1173 $fs = get_file_storage();
1175 $hintids = $DB->get_records_menu('question_hints',
1176 array('questionid' => $questionid), 'id', 'id,1');
1177 foreach ($hintids as $hintid => $notused) {
1178 $fs->delete_area_files($contextid, 'question', 'hint', $hintid);
1183 * Delete all the files belonging to this question's answers.
1184 * @param int $questionid the question being deleted.
1185 * @param int $contextid the context the question is in.
1186 * @param bool $answerstoo whether there is an 'answer' question area,
1187 * as well as an 'answerfeedback' one. Default false.
1189 protected function delete_files_in_combined_feedback($questionid, $contextid) {
1191 $fs = get_file_storage();
1193 $fs->delete_area_files($contextid,
1194 'question', 'correctfeedback', $questionid);
1195 $fs->delete_area_files($contextid,
1196 'question', 'partiallycorrectfeedback', $questionid);
1197 $fs->delete_area_files($contextid,
1198 'question', 'incorrectfeedback', $questionid);
1201 public function import_file($context, $component, $filearea, $itemid, $file) {
1202 $fs = get_file_storage();
1203 $record = new stdClass();
1204 if (is_object($context)) {
1205 $record->contextid
= $context->id
;
1207 $record->contextid
= $context;
1209 $record->component
= $component;
1210 $record->filearea
= $filearea;
1211 $record->itemid
= $itemid;
1212 $record->filename
= $file->name
;
1213 $record->filepath
= '/';
1214 return $fs->create_file_from_string($record, $this->decode_file($file));
1217 protected function decode_file($file) {
1218 switch ($file->encoding
) {
1221 return base64_decode($file->content
);
1228 * This class is used in the return value from
1229 * {@link question_type::get_possible_responses()}.
1231 * @copyright 2010 The Open University
1232 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
1234 class question_possible_response
{
1236 * @var string the classification of this response the student gave to this
1237 * part of the question. Must match one of the responseclasses returned by
1238 * {@link question_type::get_possible_responses()}.
1240 public $responseclass;
1242 /** @var string the (partial) credit awarded for this responses. */
1246 * Constructor, just an easy way to set the fields.
1247 * @param string $responseclassid see the field descriptions above.
1248 * @param string $response see the field descriptions above.
1249 * @param number $fraction see the field descriptions above.
1251 public function __construct($responseclass, $fraction) {
1252 $this->responseclass
= $responseclass;
1253 $this->fraction
= $fraction;
1256 public static function no_response() {
1257 return new question_possible_response(get_string('noresponse', 'question'), 0);