From: thepurpleblob Date: Wed, 7 Feb 2007 11:36:20 +0000 (+0000) Subject: MDL-8349 Some of the overidden methods had got out of sync with parent class. X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=57359d238305413a3d68fc3b357951b93079bb19;p=moodle.git MDL-8349 Some of the overidden methods had got out of sync with parent class. --- diff --git a/question/format/qti2/format.php b/question/format/qti2/format.php index 8c11892a1e..23fcca81c3 100644 --- a/question/format/qti2/format.php +++ b/question/format/qti2/format.php @@ -1,4 +1,5 @@ dirroot/question/format/qti2/qt_common.php"); //////////////////////////////////////////////////////////////////////////// /// IMS QTI 2.0 FORMAT @@ -103,25 +104,23 @@ class qformat_qti2 extends qformat_default { return $source; } - function importpreprocess($category) { + function importpreprocess() { global $CFG; error("Sorry, importing this format is not yet implemented!", "$CFG->wwwroot/mod/quiz/import.php?category=$category->id"); } - function exportpreprocess($category, $course, $lang = null) { + function exportpreprocess() { global $CFG; require_once("{$CFG->libdir}/smarty/Smarty.class.php"); // assign the language for the export: by parameter, SESSION, USER, or the default of 'en' - if (is_null($lang)) { - $lang = current_language(); - } + $lang = current_language(); $this->lang = $lang; - return parent::exportpreprocess($category, $course); + return parent::exportpreprocess(); } @@ -232,16 +231,16 @@ function handle_questions_media(&$questions, $path, $courseid) { * @param string $filename the directory name which will hold the exported files * @return boolean - or errors out */ - function exportprocess($filename) { + function exportprocess() { global $CFG; $courseid = $this->course->id; // create a directory for the exports (if not already existing) - if (!$export_dir = make_upload_directory($this->question_get_export_dir().'/'.$filename)) { + if (!$export_dir = make_upload_directory($this->question_get_export_dir().'/'.$this->filename)) { error( get_string('cannotcreatepath','quiz',$export_dir) ); } - $path = $CFG->dataroot.'/'.$this->question_get_export_dir().'/'.$filename; + $path = $CFG->dataroot.'/'.$this->question_get_export_dir().'/'.$this->filename; // get the questions (from database) in this category // $questions = get_records("question","category",$this->category->id);