24 include_once
"./Modules/TestQuestionPool/classes/import/qti12/class.assQuestionImport.php";
48 function fromXML(&$item, $questionpool_id, &$tst_id, &$tst_object, &$question_counter, &$import_mapping)
54 $presentation = $item->getPresentation();
55 $duration = $item->getDuration();
57 $created = sprintf(
"%04d%02d%02d%02d%02d%02d", $now[
'year'], $now[
'mon'], $now[
'mday'], $now[
'hours'], $now[
'minutes'], $now[
'seconds']);
59 $feedbacksgeneric = array();
61 $this->
object->setTitle($item->getTitle());
62 $this->
object->setNrOfTries($item->getMaxattempts());
63 $this->
object->setComment($item->getComment());
64 $this->
object->setAuthor($item->getAuthor());
65 $this->
object->setOwner($ilUser->getId());
66 $this->
object->setQuestion($this->object->QTIMaterialToString($item->getQuestiontext()));
67 $this->
object->setObjId($questionpool_id);
68 $this->
object->setEstimatedWorkingTime($duration[
"h"], $duration[
"m"], $duration[
"s"]);
69 $this->
object->setPoints($item->getMetadataEntry(
"points"));
70 $this->
object->setMaxSize($item->getMetadataEntry(
"maxsize"));
71 $this->
object->setAllowedExtensions($item->getMetadataEntry(
"allowedextensions"));
72 $this->
object->saveToDb();
77 $questiontext = $this->
object->getQuestion();
78 if (is_array(
$_SESSION[
"import_mob_xhtml"]))
80 include_once
"./Services/MediaObjects/classes/class.ilObjMediaObject.php";
81 include_once
"./Services/RTE/classes/class.ilRTE.php";
82 foreach (
$_SESSION[
"import_mob_xhtml"] as $mob)
93 $GLOBALS[
'ilLog']->write(__METHOD__.
': import mob from dir: '. $importfile);
97 $questiontext = str_replace(
"src=\"" . $mob[
"mob"] .
"\"",
"src=\"" .
"il_" . IL_INST_ID .
"_mob_" . $media_object->getId() .
"\"", $questiontext);
98 foreach ($feedbacksgeneric as $correctness => $material)
100 $feedbacksgeneric[$correctness] = str_replace(
"src=\"" . $mob[
"mob"] .
"\"",
"src=\"" .
"il_" . IL_INST_ID .
"_mob_" . $media_object->getId() .
"\"", $material);
105 foreach ($feedbacksgeneric as $correctness => $material)
109 $this->
object->saveToDb();
110 if (count($item->suggested_solutions))
112 foreach ($item->suggested_solutions as $suggested_solution)
114 $this->
object->setSuggestedSolution($suggested_solution[
"solution"]->getContent(), $suggested_solution[
"gap_index"],
true);
116 $this->
object->saveToDb();
120 $q_1_id = $this->
object->getId();
121 $question_id = $this->
object->duplicate(
true, null, null, null, $tst_id);
122 $tst_object->questions[$question_counter++] = $question_id;
123 $import_mapping[$item->getIdent()] = array(
"pool" => $q_1_id,
"test" => $question_id);
127 $import_mapping[$item->getIdent()] = array(
"pool" => $this->object->getId(),
"test" => 0);