MDL-30018 restore: better answer matching. Credit goes to Tyler Bannister, thanks!
[moodle.git] / question / format.php
blob980f20973b7387e5362839fa8618904d3b3dd9ba
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 * Defines the base class for question import and export formats.
20 * @package moodlecore
21 * @subpackage questionbank
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();
30 /**
31 * Base class for question import and export formats.
33 * @copyright 1999 onwards Martin Dougiamas {@link http://moodle.com}
34 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
36 class qformat_default {
38 public $displayerrors = true;
39 public $category = null;
40 public $questions = array();
41 public $course = null;
42 public $filename = '';
43 public $realfilename = '';
44 public $matchgrades = 'error';
45 public $catfromfile = 0;
46 public $contextfromfile = 0;
47 public $cattofile = 0;
48 public $contexttofile = 0;
49 public $questionids = array();
50 public $importerrors = 0;
51 public $stoponerror = true;
52 public $translator = null;
53 public $canaccessbackupdata = true;
55 protected $importcontext = null;
57 // functions to indicate import/export functionality
58 // override to return true if implemented
60 /** @return bool whether this plugin provides import functionality. */
61 public function provide_import() {
62 return false;
65 /** @return bool whether this plugin provides export functionality. */
66 public function provide_export() {
67 return false;
70 /** The string mime-type of the files that this plugin reads or writes. */
71 public function mime_type() {
72 return mimeinfo('type', $this->export_file_extension());
75 /**
76 * @return string the file extension (including .) that is normally used for
77 * files handled by this plugin.
79 public function export_file_extension() {
80 return '.txt';
83 /**
84 * Check if the given file is capable of being imported by this plugin.
86 * Note that expensive or detailed integrity checks on the file should
87 * not be performed by this method. Simple file type or magic-number tests
88 * would be suitable.
90 * @param stored_file $file the file to check
91 * @return bool whether this plugin can import the file
93 public function can_import_file($file) {
94 return ($file->get_mimetype() == $this->mime_type());
97 // Accessor methods
99 /**
100 * set the category
101 * @param object category the category object
103 public function setCategory($category) {
104 if (count($this->questions)) {
105 debugging('You shouldn\'t call setCategory after setQuestions');
107 $this->category = $category;
108 $this->importcontext = context::instance_by_id($this->category->contextid);
112 * Set the specific questions to export. Should not include questions with
113 * parents (sub questions of cloze question type).
114 * Only used for question export.
115 * @param array of question objects
117 public function setQuestions($questions) {
118 if ($this->category !== null) {
119 debugging('You shouldn\'t call setQuestions after setCategory');
121 $this->questions = $questions;
125 * set the course class variable
126 * @param course object Moodle course variable
128 public function setCourse($course) {
129 $this->course = $course;
133 * set an array of contexts.
134 * @param array $contexts Moodle course variable
136 public function setContexts($contexts) {
137 $this->contexts = $contexts;
138 $this->translator = new context_to_string_translator($this->contexts);
142 * set the filename
143 * @param string filename name of file to import/export
145 public function setFilename($filename) {
146 $this->filename = $filename;
150 * set the "real" filename
151 * (this is what the user typed, regardless of wha happened next)
152 * @param string realfilename name of file as typed by user
154 public function setRealfilename($realfilename) {
155 $this->realfilename = $realfilename;
159 * set matchgrades
160 * @param string matchgrades error or nearest for grades
162 public function setMatchgrades($matchgrades) {
163 $this->matchgrades = $matchgrades;
167 * set catfromfile
168 * @param bool catfromfile allow categories embedded in import file
170 public function setCatfromfile($catfromfile) {
171 $this->catfromfile = $catfromfile;
175 * set contextfromfile
176 * @param bool $contextfromfile allow contexts embedded in import file
178 public function setContextfromfile($contextfromfile) {
179 $this->contextfromfile = $contextfromfile;
183 * set cattofile
184 * @param bool cattofile exports categories within export file
186 public function setCattofile($cattofile) {
187 $this->cattofile = $cattofile;
191 * set contexttofile
192 * @param bool cattofile exports categories within export file
194 public function setContexttofile($contexttofile) {
195 $this->contexttofile = $contexttofile;
199 * set stoponerror
200 * @param bool stoponerror stops database write if any errors reported
202 public function setStoponerror($stoponerror) {
203 $this->stoponerror = $stoponerror;
207 * @param bool $canaccess Whether the current use can access the backup data folder. Determines
208 * where export files are saved.
210 public function set_can_access_backupdata($canaccess) {
211 $this->canaccessbackupdata = $canaccess;
214 /***********************
215 * IMPORTING FUNCTIONS
216 ***********************/
219 * Handle parsing error
221 protected function error($message, $text='', $questionname='') {
222 $importerrorquestion = get_string('importerrorquestion', 'question');
224 echo "<div class=\"importerror\">\n";
225 echo "<strong>$importerrorquestion $questionname</strong>";
226 if (!empty($text)) {
227 $text = s($text);
228 echo "<blockquote>$text</blockquote>\n";
230 echo "<strong>$message</strong>\n";
231 echo "</div>";
233 $this->importerrors++;
237 * Import for questiontype plugins
238 * Do not override.
239 * @param data mixed The segment of data containing the question
240 * @param question object processed (so far) by standard import code if appropriate
241 * @param extra mixed any additional format specific data that may be passed by the format
242 * @param qtypehint hint about a question type from format
243 * @return object question object suitable for save_options() or false if cannot handle
245 public function try_importing_using_qtypes($data, $question = null, $extra = null,
246 $qtypehint = '') {
248 // work out what format we are using
249 $formatname = substr(get_class($this), strlen('qformat_'));
250 $methodname = "import_from_$formatname";
252 //first try importing using a hint from format
253 if (!empty($qtypehint)) {
254 $qtype = question_bank::get_qtype($qtypehint, false);
255 if (is_object($qtype) && method_exists($qtype, $methodname)) {
256 $question = $qtype->$methodname($data, $question, $this, $extra);
257 if ($question) {
258 return $question;
263 // loop through installed questiontypes checking for
264 // function to handle this question
265 foreach (question_bank::get_all_qtypes() as $qtype) {
266 if (method_exists($qtype, $methodname)) {
267 if ($question = $qtype->$methodname($data, $question, $this, $extra)) {
268 return $question;
272 return false;
276 * Perform any required pre-processing
277 * @return bool success
279 public function importpreprocess() {
280 return true;
284 * Process the file
285 * This method should not normally be overidden
286 * @param object $category
287 * @return bool success
289 public function importprocess($category) {
290 global $USER, $CFG, $DB, $OUTPUT;
292 // reset the timer in case file upload was slow
293 set_time_limit(0);
295 // STAGE 1: Parse the file
296 echo $OUTPUT->notification(get_string('parsingquestions', 'question'), 'notifysuccess');
298 if (! $lines = $this->readdata($this->filename)) {
299 echo $OUTPUT->notification(get_string('cannotread', 'question'));
300 return false;
303 if (!$questions = $this->readquestions($lines)) { // Extract all the questions
304 echo $OUTPUT->notification(get_string('noquestionsinfile', 'question'));
305 return false;
308 // STAGE 2: Write data to database
309 echo $OUTPUT->notification(get_string('importingquestions', 'question',
310 $this->count_questions($questions)), 'notifysuccess');
312 // check for errors before we continue
313 if ($this->stoponerror and ($this->importerrors>0)) {
314 echo $OUTPUT->notification(get_string('importparseerror', 'question'));
315 return true;
318 // get list of valid answer grades
319 $gradeoptionsfull = question_bank::fraction_options_full();
321 // check answer grades are valid
322 // (now need to do this here because of 'stop on error': MDL-10689)
323 $gradeerrors = 0;
324 $goodquestions = array();
325 foreach ($questions as $question) {
326 if (!empty($question->fraction) and (is_array($question->fraction))) {
327 $fractions = $question->fraction;
328 $answersvalid = true; // in case they are!
329 foreach ($fractions as $key => $fraction) {
330 $newfraction = match_grade_options($gradeoptionsfull, $fraction,
331 $this->matchgrades);
332 if ($newfraction === false) {
333 $answersvalid = false;
334 } else {
335 $fractions[$key] = $newfraction;
338 if (!$answersvalid) {
339 echo $OUTPUT->notification(get_string('invalidgrade', 'question'));
340 ++$gradeerrors;
341 continue;
342 } else {
343 $question->fraction = $fractions;
346 $goodquestions[] = $question;
348 $questions = $goodquestions;
350 // check for errors before we continue
351 if ($this->stoponerror && $gradeerrors > 0) {
352 return false;
355 // count number of questions processed
356 $count = 0;
358 foreach ($questions as $question) { // Process and store each question
360 // reset the php timeout
361 set_time_limit(0);
363 // check for category modifiers
364 if ($question->qtype == 'category') {
365 if ($this->catfromfile) {
366 // find/create category object
367 $catpath = $question->category;
368 $newcategory = $this->create_category_path($catpath);
369 if (!empty($newcategory)) {
370 $this->category = $newcategory;
373 continue;
375 $question->context = $this->importcontext;
377 $count++;
379 echo "<hr /><p><b>$count</b>. ".$this->format_question_text($question)."</p>";
381 $question->category = $this->category->id;
382 $question->stamp = make_unique_id_code(); // Set the unique code (not to be changed)
384 $question->createdby = $USER->id;
385 $question->timecreated = time();
386 $question->modifiedby = $USER->id;
387 $question->timemodified = time();
388 $fileoptions = array(
389 'subdirs' => false,
390 'maxfiles' => -1,
391 'maxbytes' => 0,
393 if (is_array($question->questiontext)) {
394 // Importing images from draftfile.
395 $questiontext = $question->questiontext;
396 $question->questiontext = $questiontext['text'];
398 if (is_array($question->generalfeedback)) {
399 $generalfeedback = $question->generalfeedback;
400 $question->generalfeedback = $generalfeedback['text'];
403 $question->id = $DB->insert_record('question', $question);
405 if (!empty($questiontext['itemid'])) {
406 $question->questiontext = file_save_draft_area_files($questiontext['itemid'],
407 $this->importcontext->id, 'question', 'questiontext', $question->id,
408 $fileoptions, $question->questiontext);
409 } else if (isset($question->questiontextfiles)) {
410 foreach ($question->questiontextfiles as $file) {
411 question_bank::get_qtype($question->qtype)->import_file(
412 $this->importcontext, 'question', 'questiontext', $question->id, $file);
415 if (!empty($generalfeedback['itemid'])) {
416 $question->generalfeedback = file_save_draft_area_files($generalfeedback['itemid'],
417 $this->importcontext->id, 'question', 'generalfeedback', $question->id,
418 $fileoptions, $question->generalfeedback);
419 } else if (isset($question->generalfeedbackfiles)) {
420 foreach ($question->generalfeedbackfiles as $file) {
421 question_bank::get_qtype($question->qtype)->import_file(
422 $this->importcontext, 'question', 'generalfeedback', $question->id, $file);
425 $DB->update_record('question', $question);
427 $this->questionids[] = $question->id;
429 // Now to save all the answers and type-specific options
431 $result = question_bank::get_qtype($question->qtype)->save_question_options($question);
433 if (!empty($CFG->usetags) && isset($question->tags)) {
434 require_once($CFG->dirroot . '/tag/lib.php');
435 tag_set('question', $question->id, $question->tags);
438 if (!empty($result->error)) {
439 echo $OUTPUT->notification($result->error);
440 return false;
443 if (!empty($result->notice)) {
444 echo $OUTPUT->notification($result->notice);
445 return true;
448 // Give the question a unique version stamp determined by question_hash()
449 $DB->set_field('question', 'version', question_hash($question),
450 array('id' => $question->id));
452 return true;
456 * Count all non-category questions in the questions array.
458 * @param array questions An array of question objects.
459 * @return int The count.
462 protected function count_questions($questions) {
463 $count = 0;
464 if (!is_array($questions)) {
465 return $count;
467 foreach ($questions as $question) {
468 if (!is_object($question) || !isset($question->qtype) ||
469 ($question->qtype == 'category')) {
470 continue;
472 $count++;
474 return $count;
478 * find and/or create the category described by a delimited list
479 * e.g. $course$/tom/dick/harry or tom/dick/harry
481 * removes any context string no matter whether $getcontext is set
482 * but if $getcontext is set then ignore the context and use selected category context.
484 * @param string catpath delimited category path
485 * @param int courseid course to search for categories
486 * @return mixed category object or null if fails
488 protected function create_category_path($catpath) {
489 global $DB;
490 $catnames = $this->split_category_path($catpath);
491 $parent = 0;
492 $category = null;
494 // check for context id in path, it might not be there in pre 1.9 exports
495 $matchcount = preg_match('/^\$([a-z]+)\$$/', $catnames[0], $matches);
496 if ($matchcount == 1) {
497 $contextid = $this->translator->string_to_context($matches[1]);
498 array_shift($catnames);
499 } else {
500 $contextid = false;
503 if ($this->contextfromfile && $contextid !== false) {
504 $context = context::instance_by_id($contextid);
505 require_capability('moodle/question:add', $context);
506 } else {
507 $context = context::instance_by_id($this->category->contextid);
509 $this->importcontext = $context;
511 // Now create any categories that need to be created.
512 foreach ($catnames as $catname) {
513 if ($category = $DB->get_record('question_categories',
514 array('name' => $catname, 'contextid' => $context->id, 'parent' => $parent))) {
515 $parent = $category->id;
516 } else {
517 require_capability('moodle/question:managecategory', $context);
518 // create the new category
519 $category = new stdClass();
520 $category->contextid = $context->id;
521 $category->name = $catname;
522 $category->info = '';
523 $category->parent = $parent;
524 $category->sortorder = 999;
525 $category->stamp = make_unique_id_code();
526 $id = $DB->insert_record('question_categories', $category);
527 $category->id = $id;
528 $parent = $id;
531 return $category;
535 * Return complete file within an array, one item per line
536 * @param string filename name of file
537 * @return mixed contents array or false on failure
539 protected function readdata($filename) {
540 if (is_readable($filename)) {
541 $filearray = file($filename);
543 // If the first line of the file starts with a UTF-8 BOM, remove it.
544 $filearray[0] = textlib::trim_utf8_bom($filearray[0]);
546 // Check for Macintosh OS line returns (ie file on one line), and fix.
547 if (preg_match("~\r~", $filearray[0]) AND !preg_match("~\n~", $filearray[0])) {
548 return explode("\r", $filearray[0]);
549 } else {
550 return $filearray;
553 return false;
557 * Parses an array of lines into an array of questions,
558 * where each item is a question object as defined by
559 * readquestion(). Questions are defined as anything
560 * between blank lines.
562 * NOTE this method used to take $context as a second argument. However, at
563 * the point where this method was called, it was impossible to know what
564 * context the quetsions were going to be saved into, so the value could be
565 * wrong. Also, none of the standard question formats were using this argument,
566 * so it was removed. See MDL-32220.
568 * If your format does not use blank lines as a delimiter
569 * then you will need to override this method. Even then
570 * try to use readquestion for each question
571 * @param array lines array of lines from readdata
572 * @return array array of question objects
574 protected function readquestions($lines) {
576 $questions = array();
577 $currentquestion = array();
579 foreach ($lines as $line) {
580 $line = trim($line);
581 if (empty($line)) {
582 if (!empty($currentquestion)) {
583 if ($question = $this->readquestion($currentquestion)) {
584 $questions[] = $question;
586 $currentquestion = array();
588 } else {
589 $currentquestion[] = $line;
593 if (!empty($currentquestion)) { // There may be a final question
594 if ($question = $this->readquestion($currentquestion)) {
595 $questions[] = $question;
599 return $questions;
603 * return an "empty" question
604 * Somewhere to specify question parameters that are not handled
605 * by import but are required db fields.
606 * This should not be overridden.
607 * @return object default question
609 protected function defaultquestion() {
610 global $CFG;
611 static $defaultshuffleanswers = null;
612 if (is_null($defaultshuffleanswers)) {
613 $defaultshuffleanswers = get_config('quiz', 'shuffleanswers');
616 $question = new stdClass();
617 $question->shuffleanswers = $defaultshuffleanswers;
618 $question->defaultmark = 1;
619 $question->image = "";
620 $question->usecase = 0;
621 $question->multiplier = array();
622 $question->questiontextformat = FORMAT_MOODLE;
623 $question->generalfeedback = '';
624 $question->generalfeedbackformat = FORMAT_MOODLE;
625 $question->correctfeedback = '';
626 $question->partiallycorrectfeedback = '';
627 $question->incorrectfeedback = '';
628 $question->answernumbering = 'abc';
629 $question->penalty = 0.3333333;
630 $question->length = 1;
632 // this option in case the questiontypes class wants
633 // to know where the data came from
634 $question->export_process = true;
635 $question->import_process = true;
637 return $question;
641 * Add a blank combined feedback to a question object.
642 * @param object question
643 * @return object question
645 protected function add_blank_combined_feedback($question) {
646 $question->correctfeedback['text'] = '';
647 $question->correctfeedback['format'] = $question->questiontextformat;
648 $question->correctfeedback['files'] = array();
649 $question->partiallycorrectfeedback['text'] = '';
650 $question->partiallycorrectfeedback['format'] = $question->questiontextformat;
651 $question->partiallycorrectfeedback['files'] = array();
652 $question->incorrectfeedback['text'] = '';
653 $question->incorrectfeedback['format'] = $question->questiontextformat;
654 $question->incorrectfeedback['files'] = array();
655 return $question;
659 * Given the data known to define a question in
660 * this format, this function converts it into a question
661 * object suitable for processing and insertion into Moodle.
663 * If your format does not use blank lines to delimit questions
664 * (e.g. an XML format) you must override 'readquestions' too
665 * @param $lines mixed data that represents question
666 * @return object question object
668 protected function readquestion($lines) {
670 $formatnotimplemented = get_string('formatnotimplemented', 'question');
671 echo "<p>$formatnotimplemented</p>";
673 return null;
677 * Override if any post-processing is required
678 * @return bool success
680 public function importpostprocess() {
681 return true;
684 /*******************
685 * EXPORT FUNCTIONS
686 *******************/
689 * Provide export functionality for plugin questiontypes
690 * Do not override
691 * @param name questiontype name
692 * @param question object data to export
693 * @param extra mixed any addition format specific data needed
694 * @return string the data to append to export or false if error (or unhandled)
696 protected function try_exporting_using_qtypes($name, $question, $extra=null) {
697 // work out the name of format in use
698 $formatname = substr(get_class($this), strlen('qformat_'));
699 $methodname = "export_to_$formatname";
701 $qtype = question_bank::get_qtype($name, false);
702 if (method_exists($qtype, $methodname)) {
703 return $qtype->$methodname($question, $this, $extra);
705 return false;
709 * Do any pre-processing that may be required
710 * @param bool success
712 public function exportpreprocess() {
713 return true;
717 * Enable any processing to be done on the content
718 * just prior to the file being saved
719 * default is to do nothing
720 * @param string output text
721 * @param string processed output text
723 protected function presave_process($content) {
724 return $content;
728 * Do the export
729 * For most types this should not need to be overrided
730 * @return stored_file
732 public function exportprocess() {
733 global $CFG, $OUTPUT, $DB, $USER;
735 // get the questions (from database) in this category
736 // only get q's with no parents (no cloze subquestions specifically)
737 if ($this->category) {
738 $questions = get_questions_category($this->category, true);
739 } else {
740 $questions = $this->questions;
743 $count = 0;
745 // results are first written into string (and then to a file)
746 // so create/initialize the string here
747 $expout = "";
749 // track which category questions are in
750 // if it changes we will record the category change in the output
751 // file if selected. 0 means that it will get printed before the 1st question
752 $trackcategory = 0;
754 // iterate through questions
755 foreach ($questions as $question) {
756 // used by file api
757 $contextid = $DB->get_field('question_categories', 'contextid',
758 array('id' => $question->category));
759 $question->contextid = $contextid;
761 // do not export hidden questions
762 if (!empty($question->hidden)) {
763 continue;
766 // do not export random questions
767 if ($question->qtype == 'random') {
768 continue;
771 // check if we need to record category change
772 if ($this->cattofile) {
773 if ($question->category != $trackcategory) {
774 $trackcategory = $question->category;
775 $categoryname = $this->get_category_path($trackcategory, $this->contexttofile);
777 // create 'dummy' question for category export
778 $dummyquestion = new stdClass();
779 $dummyquestion->qtype = 'category';
780 $dummyquestion->category = $categoryname;
781 $dummyquestion->name = 'Switch category to ' . $categoryname;
782 $dummyquestion->id = 0;
783 $dummyquestion->questiontextformat = '';
784 $dummyquestion->contextid = 0;
785 $expout .= $this->writequestion($dummyquestion) . "\n";
789 // export the question displaying message
790 $count++;
792 if (question_has_capability_on($question, 'view', $question->category)) {
793 $expout .= $this->writequestion($question, $contextid) . "\n";
797 // continue path for following error checks
798 $course = $this->course;
799 $continuepath = "$CFG->wwwroot/question/export.php?courseid=$course->id";
801 // did we actually process anything
802 if ($count==0) {
803 print_error('noquestions', 'question', $continuepath);
806 // final pre-process on exported data
807 $expout = $this->presave_process($expout);
808 return $expout;
812 * get the category as a path (e.g., tom/dick/harry)
813 * @param int id the id of the most nested catgory
814 * @return string the path
816 protected function get_category_path($id, $includecontext = true) {
817 global $DB;
819 if (!$category = $DB->get_record('question_categories', array('id' => $id))) {
820 print_error('cannotfindcategory', 'error', '', $id);
822 $contextstring = $this->translator->context_to_string($category->contextid);
824 $pathsections = array();
825 do {
826 $pathsections[] = $category->name;
827 $id = $category->parent;
828 } while ($category = $DB->get_record('question_categories', array('id' => $id)));
830 if ($includecontext) {
831 $pathsections[] = '$' . $contextstring . '$';
834 $path = $this->assemble_category_path(array_reverse($pathsections));
836 return $path;
840 * Convert a list of category names, possibly preceeded by one of the
841 * context tokens like $course$, into a string representation of the
842 * category path.
844 * Names are separated by / delimiters. And /s in the name are replaced by //.
846 * To reverse the process and split the paths into names, use
847 * {@link split_category_path()}.
849 * @param array $names
850 * @return string
852 protected function assemble_category_path($names) {
853 $escapednames = array();
854 foreach ($names as $name) {
855 $escapedname = str_replace('/', '//', $name);
856 if (substr($escapedname, 0, 1) == '/') {
857 $escapedname = ' ' . $escapedname;
859 if (substr($escapedname, -1) == '/') {
860 $escapedname = $escapedname . ' ';
862 $escapednames[] = $escapedname;
864 return implode('/', $escapednames);
868 * Convert a string, as returned by {@link assemble_category_path()},
869 * back into an array of category names.
871 * Each category name is cleaned by a call to clean_param(, PARAM_TEXT),
872 * which matches the cleaning in question/category_form.php.
874 * @param string $path
875 * @return array of category names.
877 protected function split_category_path($path) {
878 $rawnames = preg_split('~(?<!/)/(?!/)~', $path);
879 $names = array();
880 foreach ($rawnames as $rawname) {
881 $names[] = clean_param(trim(str_replace('//', '/', $rawname)), PARAM_TEXT);
883 return $names;
887 * Do an post-processing that may be required
888 * @return bool success
890 protected function exportpostprocess() {
891 return true;
895 * convert a single question object into text output in the given
896 * format.
897 * This must be overriden
898 * @param object question question object
899 * @return mixed question export text or null if not implemented
901 protected function writequestion($question) {
902 // if not overidden, then this is an error.
903 $formatnotimplemented = get_string('formatnotimplemented', 'question');
904 echo "<p>$formatnotimplemented</p>";
905 return null;
909 * Convert the question text to plain text, so it can safely be displayed
910 * during import to let the user see roughly what is going on.
912 protected function format_question_text($question) {
913 global $DB;
914 $formatoptions = new stdClass();
915 $formatoptions->noclean = true;
916 return html_to_text(format_text($question->questiontext,
917 $question->questiontextformat, $formatoptions), 0, false);
921 class qformat_based_on_xml extends qformat_default {
924 * A lot of imported files contain unwanted entities.
925 * This method tries to clean up all known problems.
926 * @param string str string to correct
927 * @return string the corrected string
929 public function cleaninput($str) {
931 $html_code_list = array(
932 "&#039;" => "'",
933 "&#8217;" => "'",
934 "&#8220;" => "\"",
935 "&#8221;" => "\"",
936 "&#8211;" => "-",
937 "&#8212;" => "-",
939 $str = strtr($str, $html_code_list);
940 // Use textlib entities_to_utf8 function to convert only numerical entities.
941 $str = textlib::entities_to_utf8($str, false);
942 return $str;
946 * Return the array moodle is expecting
947 * for an HTML text. No processing is done on $text.
948 * qformat classes that want to process $text
949 * for instance to import external images files
950 * and recode urls in $text must overwrite this method.
951 * @param array $text some HTML text string
952 * @return array with keys text, format and files.
954 public function text_field($text) {
955 return array(
956 'text' => trim($text),
957 'format' => FORMAT_HTML,
958 'files' => array(),
963 * Return the value of a node, given a path to the node
964 * if it doesn't exist return the default value.
965 * @param array xml data to read
966 * @param array path path to node expressed as array
967 * @param mixed default
968 * @param bool istext process as text
969 * @param string error if set value must exist, return false and issue message if not
970 * @return mixed value
972 public function getpath($xml, $path, $default, $istext=false, $error='') {
973 foreach ($path as $index) {
974 if (!isset($xml[$index])) {
975 if (!empty($error)) {
976 $this->error($error);
977 return false;
978 } else {
979 return $default;
983 $xml = $xml[$index];
986 if ($istext) {
987 if (!is_string($xml)) {
988 $this->error(get_string('invalidxml', 'qformat_xml'));
990 $xml = trim($xml);
993 return $xml;