43 public function fromXML(&$item, $questionpool_id, &$tst_id, &$tst_object, &$question_counter, $import_mapping): array
51 $presentation = $item->getPresentation();
54 $created = sprintf(
"%04d%02d%02d%02d%02d%02d", $now[
'year'], $now[
'mon'], $now[
'mday'], $now[
'hours'], $now[
'minutes'], $now[
'seconds']);
56 foreach ($presentation->order as $entry) {
57 switch ($entry[
"type"]) {
59 $response = $presentation->response[$entry[
"index"]];
61 switch (strtolower(get_class(
$response->getRenderType()))) {
62 case "ilqtirenderchoice":
63 $shuffle = $rendertype->getShuffle();
66 foreach ($rendertype->response_labels as $response_label) {
67 $ident = $response_label->getIdent();
69 $answerimage = array();
70 foreach ($response_label->material as $mat) {
72 for ($m = 0; $m < $mat->getMaterialCount(); $m++) {
73 $foundmat = $mat->getMaterial($m);
74 if (strcmp($foundmat[
"type"],
"mattext") == 0) {
76 if (strcmp($foundmat[
"type"],
"matimage") == 0) {
77 if (strlen($foundmat[
"material"]->getEmbedded())) {
83 for ($m = 0; $m < $mat->getMaterialCount(); $m++) {
84 $foundmat = $mat->getMaterial($m);
85 if (strcmp($foundmat[
"type"],
"mattext") == 0) {
86 $answertext .= $foundmat[
"material"]->getContent();
88 if (strcmp($foundmat[
"type"],
"matimage") == 0) {
91 "imagetype" => $foundmat[
"material"]->getImageType(),
92 "label" => $foundmat[
"material"]->getLabel(),
93 "content" => $foundmat[
"material"]->
getContent()
98 $answertext = $this->
object->QTIMaterialToString($mat);
101 $answers[$ident] = array(
102 "answertext" => $answertext,
103 "imagefile" => $answerimage,
105 "answerorder" => $answerorder++,
106 "points_unchecked" => 0,
115 $responses = array();
116 $feedbacks = array();
117 $feedbacksgeneric = array();
118 foreach ($item->resprocessing as $resprocessing) {
119 foreach ($resprocessing->respcondition as $respcondition) {
122 $conditionvar = $respcondition->getConditionvar();
123 foreach ($conditionvar->order as $order) {
124 switch ($order[
"field"]) {
129 $ident = $conditionvar->varequal[$order[
"index"]]->getContent();
133 foreach ($respcondition->setvar as $setvar) {
134 if (strcmp($ident,
"") != 0) {
136 $answers[$ident][
"action"] = $setvar->getAction();
137 $answers[$ident][
"points"] = $setvar->getContent();
138 if (count($respcondition->displayfeedback)) {
139 foreach ($respcondition->displayfeedback as $feedbackpointer) {
140 if (strlen($feedbackpointer->getLinkrefid())) {
141 foreach ($item->itemfeedback as $ifb) {
142 if (strcmp($ifb->getIdent(),
"response_allcorrect") == 0) {
144 if (count($ifb->material)) {
145 foreach ($ifb->material as $material) {
146 $feedbacksgeneric[1] = $material;
149 if ((count($ifb->flow_mat) > 0)) {
150 foreach ($ifb->flow_mat as $fmat) {
151 if (count($fmat->material)) {
152 foreach ($fmat->material as $material) {
153 $feedbacksgeneric[1] = $material;
158 } elseif (strcmp($ifb->getIdent(),
"response_onenotcorrect") == 0) {
160 if (count($ifb->material)) {
161 foreach ($ifb->material as $material) {
162 $feedbacksgeneric[0] = $material;
165 if ((count($ifb->flow_mat) > 0)) {
166 foreach ($ifb->flow_mat as $fmat) {
167 if (count($fmat->material)) {
168 foreach ($fmat->material as $material) {
169 $feedbacksgeneric[0] = $material;
175 if (strcmp($ifb->getIdent(), $feedbackpointer->getLinkrefid()) == 0) {
177 if (count($ifb->material)) {
178 foreach ($ifb->material as $material) {
179 $feedbacks[$ident] = $material;
182 if ((count($ifb->flow_mat) > 0)) {
183 foreach ($ifb->flow_mat as $fmat) {
184 if (count($fmat->material)) {
185 foreach ($fmat->material as $material) {
186 $feedbacks[$ident] = $material;
197 $answers[$ident][
"action"] = $setvar->getAction();
198 $answers[$ident][
"points_unchecked"] = $setvar->getContent();
205 $this->
object->setTitle($item->getTitle());
206 $this->
object->setNrOfTries((
int) $item->getMaxattempts());
207 $this->
object->setComment($item->getComment());
208 $this->
object->setAuthor($item->getAuthor());
209 $this->
object->setOwner(
$ilUser->getId());
210 $this->
object->setQuestion($this->
object->QTIMaterialToString($item->getQuestiontext()));
211 $this->
object->setObjId($questionpool_id);
212 $this->
object->setShuffle($shuffle);
213 $this->
object->setThumbSize(
216 foreach ($answers as $answer) {
217 if ($item->getMetadataEntry(
'singleline') || (is_array($answer[
"imagefile"]) && count($answer[
"imagefile"]) > 0)) {
218 $this->
object->setIsSingleline(
true);
220 if (isset($answer[
"imagefile"][
"label"])) {
221 $this->
object->addAnswer(
222 $answer[
"answertext"],
224 $answer[
"answerorder"],
225 $answer[
"imagefile"][
"label"]
228 $this->
object->addAnswer($answer[
"answertext"], $answer[
"points"], $answer[
"answerorder"]);
232 $this->
object->setAdditionalContentEditingMode(
235 $this->
object->saveToDb();
236 foreach ($answers as $answer) {
237 if (is_array($answer[
"imagefile"]) && (count($answer[
"imagefile"]) > 0)) {
238 $image = base64_decode($answer[
"imagefile"][
"content"]);
239 $imagepath = $this->
object->getImagePath();
240 if (!file_exists($imagepath)) {
243 $imagepath .= $answer[
"imagefile"][
"label"];
244 $fh = fopen($imagepath,
"wb");
247 $imagefile = fwrite($fh, $image);
253 $feedbackSetting = $item->getMetadataEntry(
'feedback_setting');
254 if (!is_null($feedbackSetting)) {
255 $this->
object->feedbackOBJ->saveSpecificFeedbackSetting($this->
object->getId(), $feedbackSetting);
258 foreach ($feedbacks as $ident => $material) {
259 $m = $this->
object->QTIMaterialToString($material);
260 $feedbacks[$ident] = $m;
262 foreach ($feedbacksgeneric as $correctness => $material) {
263 $m = $this->
object->QTIMaterialToString($material);
264 $feedbacksgeneric[$correctness] = $m;
267 $questiontext = $this->
object->getQuestion();
268 $answers = &$this->
object->getAnswers();
278 $DIC[
'ilLog']->write(__METHOD__ .
': import mob from dir: ' . $importfile);
282 $questiontext = str_replace(
"src=\"" . $mob[
"mob"] .
"\"",
"src=\"" .
"il_" .
IL_INST_ID .
"_mob_" . $media_object->getId() .
"\"", $questiontext);
283 foreach ($answers as
$key => $value) {
284 $answer_obj = $answers[
$key];
285 $answer_obj->setAnswertext(str_replace(
"src=\"" . $mob[
"mob"] .
"\"",
"src=\"" .
"il_" .
IL_INST_ID .
"_mob_" . $media_object->getId() .
"\"", $answer_obj->getAnswertext()));
287 foreach ($feedbacks as $ident => $material) {
288 $feedbacks[$ident] = str_replace(
"src=\"" . $mob[
"mob"] .
"\"",
"src=\"" .
"il_" .
IL_INST_ID .
"_mob_" . $media_object->getId() .
"\"", $material);
290 foreach ($feedbacksgeneric as $correctness => $material) {
291 $feedbacksgeneric[$correctness] = str_replace(
"src=\"" . $mob[
"mob"] .
"\"",
"src=\"" .
"il_" .
IL_INST_ID .
"_mob_" . $media_object->getId() .
"\"", $material);
296 foreach ($answers as
$key => $value) {
297 $answer_obj = &$answers[
$key];
300 foreach ($feedbacks as $ident => $material) {
301 $this->
object->feedbackOBJ->importSpecificAnswerFeedback(
308 foreach ($feedbacksgeneric as $correctness => $material) {
309 $this->
object->feedbackOBJ->importGenericFeedback(
315 $this->
object->saveToDb();
316 if (count($item->suggested_solutions)) {
317 foreach ($item->suggested_solutions as $suggested_solution) {
318 $this->
object->setSuggestedSolution($suggested_solution[
"solution"]->
getContent(), $suggested_solution[
"gap_index"],
true);
320 $this->
object->saveToDb();
323 $q_1_id = $this->
object->getId();
324 $question_id = $this->
object->duplicate(
true,
"",
"",
"", $tst_id);
325 $tst_object->questions[$question_counter++] = $question_id;
326 $import_mapping[$item->getIdent()] = array(
"pool" => $q_1_id,
"test" => $question_id);
328 $import_mapping[$item->getIdent()] = array(
"pool" => $this->
object->getId(),
"test" => 0);
330 return $import_mapping;
static _replaceMediaObjectImageSrc(string $a_text, int $a_direction=0, string $nic='')
Replaces image source from mob image urls with the mob id or replaces mob id with the correct image s...
static get(string $a_var)
deduceThumbSizeFromImportValue(?int $size)
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 makeDirParents(string $a_dir)
Create a new directory and all parent directories.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getTstImportArchivDirectory()
returns the full path to extracted tst import archiv (tst import dir + tst archiv subdir) ...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static clear(string $a_var)
fromXML(&$item, $questionpool_id, &$tst_id, &$tst_object, &$question_counter, $import_mapping)
Creates a question from a QTI file.