32 public function fromXML(&$item, $questionpool_id, &$tst_id, &$tst_object, &$question_counter, $import_mapping): array
42 $presentation = $item->getPresentation();
43 foreach ($presentation->order as $entry) {
44 switch ($entry[
"type"]) {
46 $response = $presentation->response[$entry[
"index"]];
48 switch (strtolower(get_class(
$response->getRenderType()))) {
49 case "ilqtirenderchoice":
50 $shuffle = $rendertype->getShuffle();
53 foreach ($rendertype->response_labels as $response_label) {
54 $ident = $response_label->getIdent();
56 $answerimage = array();
57 foreach ($response_label->material as $mat) {
59 for ($m = 0; $m < $mat->getMaterialCount(); $m++) {
60 $foundmat = $mat->getMaterial($m);
61 if (strcmp($foundmat[
"type"],
"mattext") == 0) {
63 if (strcmp($foundmat[
"type"],
"matimage") == 0) {
64 if (strlen($foundmat[
"material"]->getEmbedded())) {
70 for ($m = 0; $m < $mat->getMaterialCount(); $m++) {
71 $foundmat = $mat->getMaterial($m);
72 if (strcmp($foundmat[
"type"],
"mattext") == 0) {
73 $answertext .= $foundmat[
"material"]->getContent();
75 if (strcmp($foundmat[
"type"],
"matimage") == 0) {
78 "imagetype" => $foundmat[
"material"]->getImageType(),
79 "label" => $foundmat[
"material"]->getLabel(),
80 "content" => $foundmat[
"material"]->
getContent()
85 $answertext = $this->
object->QTIMaterialToString($mat);
89 $answers[$ident] = array(
90 "answertext" => $answertext,
91 "imagefile" => $answerimage,
92 "answerorder" => $ident
101 $feedbacks = array();
102 $feedbacksgeneric = array();
104 foreach ($item->resprocessing as $resprocessing) {
105 foreach ($resprocessing->outcomes->decvar as $decvar) {
106 if ($decvar->getVarname() ==
'SCORE') {
107 $this->
object->setPoints($decvar->getMaxvalue());
109 if ($decvar->getMinvalue() > 0) {
110 $this->
object->setScorePartialSolutionEnabled(
true);
112 $this->
object->setScorePartialSolutionEnabled(
false);
117 foreach ($resprocessing->respcondition as $respcondition) {
118 if (!count($respcondition->setvar)) {
119 foreach ($respcondition->getConditionvar()->varequal as $varequal) {
120 $ident = $varequal->respident;
121 $answers[$ident][
'correctness'] = (bool) $varequal->getContent();
126 foreach ($respcondition->displayfeedback as $feedbackpointer) {
127 if (strlen($feedbackpointer->getLinkrefid())) {
128 foreach ($item->itemfeedback as $ifb) {
129 if (strcmp($ifb->getIdent(), $feedbackpointer->getLinkrefid()) == 0) {
131 if (count($ifb->material)) {
132 foreach ($ifb->material as $material) {
133 $feedbacks[$ident] = $material;
136 if ((count($ifb->flow_mat) > 0)) {
137 foreach ($ifb->flow_mat as $fmat) {
138 if (count($fmat->material)) {
139 foreach ($fmat->material as $material) {
140 $feedbacks[$ident] = $material;
150 foreach ($respcondition->displayfeedback as $feedbackpointer) {
151 if (strlen($feedbackpointer->getLinkrefid())) {
152 foreach ($item->itemfeedback as $ifb) {
153 if ($ifb->getIdent() ==
"response_allcorrect") {
155 if (count($ifb->material)) {
156 foreach ($ifb->material as $material) {
157 $feedbacksgeneric[1] = $material;
160 if ((count($ifb->flow_mat) > 0)) {
161 foreach ($ifb->flow_mat as $fmat) {
162 if (count($fmat->material)) {
163 foreach ($fmat->material as $material) {
164 $feedbacksgeneric[1] = $material;
169 } elseif ($ifb->getIdent() ==
"response_onenotcorrect") {
171 if (count($ifb->material)) {
172 foreach ($ifb->material as $material) {
173 $feedbacksgeneric[0] = $material;
176 if ((count($ifb->flow_mat) > 0)) {
177 foreach ($ifb->flow_mat as $fmat) {
178 if (count($fmat->material)) {
179 foreach ($fmat->material as $material) {
180 $feedbacksgeneric[0] = $material;
194 $this->
object->setTitle($item->getTitle());
195 $this->
object->setNrOfTries((
int) $item->getMaxattempts());
196 $this->
object->setComment($item->getComment());
197 $this->
object->setAuthor($item->getAuthor());
198 $this->
object->setOwner(
$ilUser->getId());
199 $this->
object->setQuestion($this->
object->QTIMaterialToString($item->getQuestiontext()));
200 $this->
object->setObjId($questionpool_id);
201 $this->
object->setShuffleAnswersEnabled($shuffle);
202 $this->
object->setAnswerType($item->getMetadataEntry(
'answer_type'));
203 $this->
object->setOptionLabel($item->getMetadataEntry(
'option_label_setting'));
204 $this->
object->setCustomTrueOptionLabel($item->getMetadataEntry(
'custom_true_option_label'));
205 $this->
object->setCustomFalseOptionLabel($item->getMetadataEntry(
'custom_false_option_label'));
206 $this->
object->setThumbSize(
210 $this->
object->saveToDb();
212 foreach ($answers as $answerData) {
214 $answer->setImageFsDir($this->
object->getImagePath());
215 $answer->setImageWebDir($this->
object->getImagePathWeb());
217 $answer->setPosition($answerData[
'answerorder']);
218 $answer->setAnswertext($answerData[
'answertext']);
219 $answer->setCorrectness($answerData[
'correctness']);
221 if (isset($answerData[
'imagefile'][
'label'])) {
222 $answer->setImageFile($answerData[
'imagefile'][
'label']);
225 $this->
object->addAnswer($answer);
228 $this->
object->setAdditionalContentEditingMode(
232 $this->
object->saveToDb();
234 foreach ($answers as $answer) {
235 if (is_array($answer[
"imagefile"]) && (count($answer[
"imagefile"]) > 0)) {
236 $image = base64_decode($answer[
"imagefile"][
"content"]);
237 $imagepath = $this->
object->getImagePath();
238 if (!file_exists($imagepath)) {
241 $imagepath .= $answer[
"imagefile"][
"label"];
242 if ($fh = fopen($imagepath,
"wb")) {
243 $imagefile = fwrite($fh, $image);
249 $feedbackSetting = $item->getMetadataEntry(
'feedback_setting');
250 if (!is_null($feedbackSetting)) {
251 $this->
object->feedbackOBJ->saveSpecificFeedbackSetting($this->
object->getId(), $feedbackSetting);
252 $this->
object->setSpecificFeedbackSetting($feedbackSetting);
256 foreach ($feedbacks as $ident => $material) {
257 $m = $this->
object->QTIMaterialToString($material);
258 $feedbacks[$ident] = $m;
260 foreach ($feedbacksgeneric as $correctness => $material) {
261 $m = $this->
object->QTIMaterialToString($material);
262 $feedbacksgeneric[$correctness] = $m;
264 $questiontext = $this->
object->getQuestion();
265 $answers = $this->
object->getAnswers();
275 $DIC[
'ilLog']->write(__METHOD__ .
': import mob from dir: ' . $importfile);
279 $questiontext = str_replace(
"src=\"" . $mob[
"mob"] .
"\"",
"src=\"" .
"il_" .
IL_INST_ID .
"_mob_" . $media_object->getId() .
"\"", $questiontext);
280 foreach ($answers as
$key => $value) {
281 $answer_obj = &$answers[
$key];
282 $answer_obj->setAnswertext(str_replace(
"src=\"" . $mob[
"mob"] .
"\"",
"src=\"" .
"il_" .
IL_INST_ID .
"_mob_" . $media_object->getId() .
"\"", $answer_obj->getAnswertext()));
284 foreach ($feedbacks as $ident => $material) {
285 $feedbacks[$ident] = str_replace(
"src=\"" . $mob[
"mob"] .
"\"",
"src=\"" .
"il_" .
IL_INST_ID .
"_mob_" . $media_object->getId() .
"\"", $material);
287 foreach ($feedbacksgeneric as $correctness => $material) {
288 $feedbacksgeneric[$correctness] = str_replace(
"src=\"" . $mob[
"mob"] .
"\"",
"src=\"" .
"il_" .
IL_INST_ID .
"_mob_" . $media_object->getId() .
"\"", $material);
293 foreach ($answers as
$key => $value) {
294 $answer_obj = &$answers[
$key];
297 foreach ($feedbacks as $ident => $material) {
298 $this->
object->feedbackOBJ->importSpecificAnswerFeedback(
305 foreach ($feedbacksgeneric as $correctness => $material) {
306 $this->
object->feedbackOBJ->importGenericFeedback(
312 $this->
object->saveToDb();
313 if (count($item->suggested_solutions)) {
314 foreach ($item->suggested_solutions as $suggested_solution) {
315 $this->
object->setSuggestedSolution($suggested_solution[
"solution"]->
getContent(), $suggested_solution[
"gap_index"],
true);
317 $this->
object->saveToDb();
320 $q_1_id = $this->
object->getId();
321 $question_id = $this->
object->duplicate(
true,
"",
"",
"", $tst_id);
322 $tst_object->questions[$question_counter++] = $question_id;
323 $import_mapping[$item->getIdent()] = array(
"pool" => $q_1_id,
"test" => $question_id);
325 $import_mapping[$item->getIdent()] = array(
"pool" => $this->
object->getId(),
"test" => 0);
327 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)
fromXML(&$item, $questionpool_id, &$tst_id, &$tst_object, &$question_counter, $import_mapping)
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.
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)