2 require_once
'Modules/TestQuestionPool/classes/import/qti12/class.assQuestionImport.php';
3 require_once
'Modules/TestQuestionPool/classes/class.assLongMenu.php';
9 public function fromXML(&$item, $questionpool_id, &$tst_id, &$tst_object, &$question_counter, &$import_mapping)
16 $presentation = $item->getPresentation();
17 $duration = $item->getDuration();
18 $questiontext = array();
19 $seperate_question_field = $item->getMetadataEntry(
"question");
22 $created = sprintf(
"%04d%02d%02d%02d%02d%02d", $now[
'year'], $now[
'mon'], $now[
'mday'], $now[
'hours'], $now[
'minutes'], $now[
'seconds']);
24 $correct_answers = array();
25 $presentation = $item->getPresentation();
26 $gap_types = json_decode($item->getMetadataEntry(
"gapTypes"));
27 foreach ($presentation->order as $entry) {
28 switch ($entry[
"type"]) {
31 $material = $presentation->material[$entry[
"index"]];
32 if (preg_match(
'/\[Longmenu \d\]/', $this->object->QTIMaterialToString($material))) {
33 $this->
object->setLongMenuTextValue($this->object->QTIMaterialToString($material));
35 $this->
object->setQuestion($this->object->QTIMaterialToString($material));
44 $questiontext = $this->
object->getQuestion();
45 $longmenutext = $this->
object->getLongMenuTextValue();
46 if (is_array(
$_SESSION[
"import_mob_xhtml"])) {
47 foreach (
$_SESSION[
"import_mob_xhtml"] as $mob) {
55 $DIC[
'ilLog']->write(__METHOD__ .
': import mob from dir: ' . $importfile);
60 $questiontext = str_replace(
"src=\"" . $mob[
"mob"] .
"\"",
"src=\"" .
"il_" .
IL_INST_ID .
"_mob_" . $media_object->getId() .
"\"", $questiontext);
61 $longmenutext = str_replace(
"src=\"" . $mob[
"mob"] .
"\"",
"src=\"" .
"il_" .
IL_INST_ID .
"_mob_" . $media_object->getId() .
"\"", $longmenutext);
68 foreach ($item->resprocessing as $resprocessing) {
69 foreach ($resprocessing->respcondition as $respcondition) {
71 $conditionvar = $respcondition->getConditionvar();
72 foreach ($conditionvar->order as $order) {
73 switch ($order[
"field"]) {
75 $equals = $conditionvar->varequal[$order[
"index"]]->getContent();
76 $gapident = $conditionvar->varequal[$order[
"index"]]->getRespident();
78 $answers[$id][] = $equals;
82 foreach ($respcondition->setvar as $setvar) {
83 if (strcmp($gapident,
"") != 0) {
84 if ($setvar->getContent() > 0) {
86 $correct_answers[$id][0][] = $equals;
87 $correct_answers[$id][1] = $setvar->getContent();
88 if (is_array($gap_types) && key_exists($id, $gap_types)) {
89 $correct_answers[$id][2] = $gap_types[$id];
94 if (count($respcondition->displayfeedback)) {
95 foreach ($respcondition->displayfeedback as $feedbackpointer) {
96 if (strlen($feedbackpointer->getLinkrefid())) {
97 foreach ($item->itemfeedback as $ifb) {
98 if (strcmp($ifb->getIdent(),
"response_allcorrect") == 0) {
100 if (count($ifb->material)) {
101 foreach ($ifb->material as $material) {
102 $feedbacksgeneric[1] = $material;
105 if ((count($ifb->flow_mat) > 0)) {
106 foreach ($ifb->flow_mat as $fmat) {
107 if (count($fmat->material)) {
108 foreach ($fmat->material as $material) {
109 $feedbacksgeneric[1] = $material;
114 } elseif (strcmp($ifb->getIdent(),
"response_onenotcorrect") == 0) {
116 if (count($ifb->material)) {
117 foreach ($ifb->material as $material) {
118 $feedbacksgeneric[0] = $material;
121 if ((count($ifb->flow_mat) > 0)) {
122 foreach ($ifb->flow_mat as $fmat) {
123 if (count($fmat->material)) {
124 foreach ($fmat->material as $material) {
125 $feedbacksgeneric[0] = $material;
132 if (count($ifb->material)) {
133 foreach ($ifb->material as $material) {
134 $feedbacks[$ifb->getIdent()] = $material;
137 if ((count($ifb->flow_mat) > 0)) {
138 foreach ($ifb->flow_mat as $fmat) {
139 if (count($fmat->material)) {
140 foreach ($fmat->material as $material) {
141 $feedbacks[$ifb->getIdent()] = $material;
155 foreach ($correct_answers as $row) {
158 $this->
object->setAnswers($answers);
160 if ($feedback !== null &&
161 count($feedbacks) > 0) {
162 foreach ($feedbacks as $ident => $material) {
163 $m = $this->
object->QTIMaterialToString($material);
164 $feedbacks[$ident] = $m;
167 if (is_array($feedbacksgeneric) && count($feedbacksgeneric) > 0) {
168 foreach ($feedbacksgeneric as $correctness => $material) {
169 $m = $this->
object->QTIMaterialToString($material);
170 $feedbacksgeneric[$correctness] = $m;
175 $this->
object->setTitle($item->getTitle());
176 $this->
object->setNrOfTries($item->getMaxattempts());
177 $this->
object->setComment($item->getComment());
178 $this->
object->setAuthor($item->getAuthor());
179 $this->
object->setOwner(
$ilUser->getId());
180 $this->
object->setObjId($questionpool_id);
181 $this->
object->setMinAutoComplete($item->getMetadataEntry(
"minAutoCompleteLength"));
182 $this->
object->setIdenticalscoring((
int) $item->getMetadataEntry(
"identical_scoring"));
183 $this->
object->setEstimatedWorkingTime($duration[
"h"], $duration[
"m"], $duration[
"s"]);
184 $this->
object->setCorrectAnswers($correct_answers);
185 $this->
object->setPoints($sum);
187 $this->
object->setAdditionalContentEditingMode(
190 $this->
object->saveToDb();
192 if ($feedback !== null &&
193 count($feedbacks) > 0) {
194 foreach ($feedbacks as $ident => $material) {
195 $this->
object->feedbackOBJ->importSpecificAnswerFeedback(
196 $this->object->getId(),
203 if (is_array($feedbacksgeneric) && count($feedbacksgeneric) > 0) {
204 foreach ($feedbacksgeneric as $correctness => $material) {
205 $this->
object->feedbackOBJ->importGenericFeedback(
206 $this->object->getId(),
212 $this->
object->saveToDb();
213 if (count($item->suggested_solutions)) {
214 foreach ($item->suggested_solutions as $suggested_solution) {
215 $this->
object->setSuggestedSolution($suggested_solution[
"solution"]->getContent(), $suggested_solution[
"gap_index"],
true);
217 $this->
object->saveToDb();
221 $q_1_id = $this->
object->getId();
222 $question_id = $this->
object->duplicate(
true, null, null, null, $tst_id);
223 $tst_object->questions[$question_counter++] = $question_id;
224 $import_mapping[$item->getIdent()] = array(
"pool" => $q_1_id,
"test" => $question_id);
226 $import_mapping[$item->getIdent()] = array(
"pool" => $this->object->getId(),
"test" => 0);
232 $id = preg_split(
'/_/', $ident);
addGeneralMetadata(ilQTIItem $item)
fetchAdditionalContentEditingModeInformation($qtiItem)
fetches the "additional content editing mode" information from qti item and falls back to ADDITIONAL_...
getQplImportArchivDirectory()
returns the full path to extracted qpl import archiv (qpl import dir + qpl archiv subdir) ...
static _replaceMediaObjectImageSrc($a_text, $a_direction=0, $nic=IL_INST_ID)
Replaces image source from mob image urls with the mob id or replaces mob id with the correct image s...
getTstImportArchivDirectory()
returns the full path to extracted tst import archiv (tst import dir + tst archiv subdir) ...
Class for question imports.