31 string $importdirectory,
37 int &$question_counter,
46 foreach ($presentation->order as $entry) {
47 switch ($entry[
"type"]) {
49 $response = $presentation->response[$entry[
"index"]];
51 switch (strtolower(get_class(
$response->getRenderType()))) {
52 case "ilqtirenderchoice":
53 $shuffle = $rendertype->getShuffle();
56 foreach ($rendertype->response_labels as $response_label) {
57 $ident = $response_label->getIdent();
60 foreach ($response_label->material as $mat) {
62 for ($m = 0; $m < $mat->getMaterialCount(); $m++) {
63 $foundmat = $mat->getMaterial($m);
64 if (strcmp($foundmat[
"type"],
"mattext") == 0) {
66 if (strcmp($foundmat[
"type"],
"matimage") == 0) {
67 if ($foundmat[
"material"]->getEmbedded()) {
73 for ($m = 0; $m < $mat->getMaterialCount(); $m++) {
74 $foundmat = $mat->getMaterial($m);
75 if (strcmp($foundmat[
"type"],
"mattext") == 0) {
76 $answertext .= $foundmat[
"material"]->getContent();
78 if (strcmp($foundmat[
"type"],
"matimage") == 0) {
81 "imagetype" => $foundmat[
"material"]->getImageType(),
82 "label" => $foundmat[
"material"]->getLabel(),
83 "content" => $foundmat[
"material"]->getContent()
92 "answertext" => $answertext,
93 "imagefile" => $answerimage,
95 "answerorder" => $answerorder++,
96 "points_unchecked" => 0,
107 $feedbacksgeneric = [];
108 foreach ($item->resprocessing as $resprocessing) {
109 foreach ($resprocessing->respcondition as $respcondition) {
112 $conditionvar = $respcondition->getConditionvar();
113 foreach ($conditionvar->order as $order) {
114 switch ($order[
"field"]) {
119 $ident = $conditionvar->varequal[$order[
"index"]]->getContent();
123 foreach ($respcondition->setvar as $setvar) {
124 if (strcmp($ident,
"") != 0) {
126 $answers[$ident][
"action"] = $setvar->getAction();
127 $answers[$ident][
"points"] = $setvar->getContent();
128 if (count($respcondition->displayfeedback)) {
129 foreach ($respcondition->displayfeedback as $feedbackpointer) {
130 if (strlen($feedbackpointer->getLinkrefid())) {
131 foreach ($item->itemfeedback as $ifb) {
132 if (strcmp($ifb->getIdent(),
"response_allcorrect") == 0) {
134 if (count($ifb->material)) {
135 foreach ($ifb->material as $material) {
136 $feedbacksgeneric[1] = $material;
139 if ((count($ifb->flow_mat) > 0)) {
140 foreach ($ifb->flow_mat as $fmat) {
141 if (count($fmat->material)) {
142 foreach ($fmat->material as $material) {
143 $feedbacksgeneric[1] = $material;
148 } elseif (strcmp($ifb->getIdent(),
"response_onenotcorrect") == 0) {
150 if (count($ifb->material)) {
151 foreach ($ifb->material as $material) {
152 $feedbacksgeneric[0] = $material;
155 if ((count($ifb->flow_mat) > 0)) {
156 foreach ($ifb->flow_mat as $fmat) {
157 if (count($fmat->material)) {
158 foreach ($fmat->material as $material) {
159 $feedbacksgeneric[0] = $material;
165 if (strcmp($ifb->getIdent(), $feedbackpointer->getLinkrefid()) == 0) {
167 if (count($ifb->material)) {
168 foreach ($ifb->material as $material) {
169 $feedbacks[$ident] = $material;
172 if ((count($ifb->flow_mat) > 0)) {
173 foreach ($ifb->flow_mat as $fmat) {
174 if (count($fmat->material)) {
175 foreach ($fmat->material as $material) {
176 $feedbacks[$ident] = $material;
187 $answers[$ident][
"action"] = $setvar->getAction();
188 $answers[$ident][
"points_unchecked"] = $setvar->getContent();
195 $this->
object->setTitle($item->
getTitle());
197 $this->
object->setComment($item->
getComment());
198 $this->
object->setAuthor($item->
getAuthor());
199 $this->
object->setOwner($user_id);
201 $this->
object->setObjId($questionpool_id);
202 $this->
object->setShuffle($shuffle);
203 $this->
object->setIsSingleline(
false);
204 $this->
object->setThumbSize(
207 foreach ($answers as $answer) {
208 if ($item->
getMetadataEntry(
'singleline') || (is_array($answer[
"imagefile"]) && count($answer[
"imagefile"]) > 0)) {
209 $this->
object->setIsSingleline(
true);
211 if (isset($answer[
"imagefile"][
"label"])) {
212 $this->
object->addAnswer(
213 $answer[
"answertext"],
215 $answer[
"answerorder"],
216 $answer[
"imagefile"][
"label"]
219 $this->
object->addAnswer($answer[
"answertext"], $answer[
"points"], $answer[
"answerorder"]);
223 $this->
object->setAdditionalContentEditingMode(
226 $this->
object->saveToDb();
227 foreach ($answers as $answer) {
228 if (is_array($answer[
"imagefile"]) && (count($answer[
"imagefile"]) > 0)) {
229 $image = base64_decode($answer[
"imagefile"][
"content"]);
230 $imagepath = $this->
object->getImagePath();
231 if (!file_exists($imagepath)) {
234 $imagepath .= $answer[
"imagefile"][
"label"];
235 $fh = fopen($imagepath,
"wb");
237 $imagefile = fwrite($fh, $image);
239 $this->
object->generateThumbForFile(
240 $answer[
"imagefile"][
"label"],
241 $this->
object->getImagePath(),
242 $this->
object->getThumbSize()
249 if (!is_null($feedbackSetting)) {
250 $this->
object->feedbackOBJ->saveSpecificFeedbackSetting($this->
object->getId(), $feedbackSetting);
253 foreach ($feedbacks as $ident => $material) {
255 $feedbacks[$ident] = $m;
257 foreach ($feedbacksgeneric as $correctness => $material) {
259 $feedbacksgeneric[$correctness] = $m;
262 $questiontext = $this->
object->getQuestion();
263 $answers = $this->
object->getAnswers();
266 $importfile = $importdirectory . DIRECTORY_SEPARATOR . $mob[
"uri"];
269 $DIC[
'ilLog']->write(__METHOD__ .
': import mob from dir: ' . $importfile);
273 $questiontext = str_replace(
"src=\"" . $mob[
"mob"] .
"\"",
"src=\"" .
"il_" .
IL_INST_ID .
"_mob_" . $media_object->getId() .
"\"", $questiontext);
274 foreach ($answers as $key => $value) {
275 $answer_obj = $answers[$key];
276 $answer_obj->setAnswertext(str_replace(
"src=\"" . $mob[
"mob"] .
"\"",
"src=\"" .
"il_" .
IL_INST_ID .
"_mob_" . $media_object->getId() .
"\"", $answer_obj->getAnswertext()));
278 foreach ($feedbacks as $ident => $material) {
279 $feedbacks[$ident] = str_replace(
"src=\"" . $mob[
"mob"] .
"\"",
"src=\"" .
"il_" .
IL_INST_ID .
"_mob_" . $media_object->getId() .
"\"", $material);
281 foreach ($feedbacksgeneric as $correctness => $material) {
282 $feedbacksgeneric[$correctness] = str_replace(
"src=\"" . $mob[
"mob"] .
"\"",
"src=\"" .
"il_" .
IL_INST_ID .
"_mob_" . $media_object->getId() .
"\"", $material);
287 foreach ($answers as $key => $value) {
288 $answer_obj = &$answers[$key];
291 foreach ($feedbacks as $ident => $material) {
292 $this->
object->feedbackOBJ->importSpecificAnswerFeedback(
299 foreach ($feedbacksgeneric as $correctness => $material) {
300 $this->
object->feedbackOBJ->importGenericFeedback(
306 $this->
object->saveToDb();
309 $q_1_id = $this->
object->getId();
310 $question_id = $this->
object->duplicate(
true,
"",
"", -1, $tst_id);
311 $tst_object->questions[$question_counter++] = $question_id;
312 $import_mapping[$item->
getIdent()] = [
"pool" => $q_1_id,
"test" => $question_id];
314 $import_mapping[$item->
getIdent()] = [
"pool" => $this->
object->getId(),
"test" => 0];
316 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)
QTIMaterialToString(ilQTIMaterial $a_material)
Reads an QTI material tag and creates a text or XHTML string.
getMetadataEntry(string $a_label)
fetchAdditionalContentEditingModeInformation($qtiItem)
fetches the "additional content editing mode" information from qti item and falls back to ADDITIONAL_...
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...
fromXML(string $importdirectory, int $user_id, ilQTIItem $item, int $questionpool_id, ?int $tst_id, ?ilObject &$tst_object, int &$question_counter, array $import_mapping)
importSuggestedSolutions(int $question_id, array $solution_from_import)
Class for question imports.
static clear(string $a_var)