32 string $importdirectory,
38 int &$question_counter,
47 foreach ($presentation->order as $entry) {
48 if ($entry[
'type'] !==
'response') {
52 $response = $presentation->response[$entry[
'index']];
54 if (strtolower(get_class(
$response->getRenderType())) !==
'ilqtirenderchoice') {
58 $shuffle = $rendertype->getShuffle();
60 foreach ($rendertype->response_labels as $response_label) {
61 $ident = $response_label->getIdent();
64 foreach ($response_label->material as $mat) {
66 for ($m = 0; $m < $mat->getMaterialCount(); $m++) {
67 $foundmat = $mat->getMaterial($m);
68 if ($foundmat[
'type'] ===
'matimage' 69 && $foundmat[
'material']->getEmbedded() !==
'') {
78 for ($m = 0; $m < $mat->getMaterialCount(); $m++) {
79 $foundmat = $mat->getMaterial($m);
80 if ($foundmat[
'type'] ===
'mattext') {
81 $answertext .= $foundmat[
'material']->getContent();
83 if ($foundmat[
'type'] ===
'matimage') {
86 'imagetype' => $foundmat[
'material']->getImageType(),
87 'label' => $foundmat[
'material']->getLabel(),
88 'content' => $foundmat[
'material']->getContent()
95 'answertext' => $answertext,
96 'imagefile' => $answerimage,
97 'answerorder' => $ident
103 $feedbacksgeneric = [];
105 foreach ($item->resprocessing as $resprocessing) {
106 foreach ($resprocessing->outcomes->decvar as $decvar) {
107 if ($decvar->getVarname() ==
'SCORE') {
108 $this->
object->setPoints($decvar->getMaxvalue());
109 $this->
object->setScorePartialSolutionEnabled(
false);
110 if ($decvar->getMinvalue() > 0) {
111 $this->
object->setScorePartialSolutionEnabled(
true);
116 foreach ($resprocessing->respcondition as $respcondition) {
117 if ($respcondition->setvar === []) {
118 foreach ($respcondition->getConditionvar()->varequal as $varequal) {
119 $ident = $varequal->respident;
120 $answers[$ident][
'correctness'] = (bool) $varequal->getContent();
124 foreach ($respcondition->displayfeedback as $feedbackpointer) {
125 if ($feedbackpointer->getLinkrefid() ===
'') {
128 foreach ($item->itemfeedback as $ifb) {
129 if ($ifb->getIdent() !== $feedbackpointer->getLinkrefid()) {
133 foreach ($ifb->material as $material) {
134 $feedbacks[$ident] = $material;
136 foreach ($ifb->flow_mat as $fmat) {
137 foreach ($fmat->material as $material) {
138 $feedbacks[$ident] = $material;
147 foreach ($respcondition->displayfeedback as $feedbackpointer) {
148 if ($feedbackpointer->getLinkrefid() ===
'') {
152 foreach ($item->itemfeedback as $ifb) {
153 if ($ifb->getIdent() ===
'response_allcorrect') {
154 foreach ($ifb->material as $material) {
155 $feedbacksgeneric[1] = $material;
157 foreach ($ifb->flow_mat as $fmat) {
158 foreach ($fmat->material as $material) {
159 $feedbacksgeneric[1] = $material;
165 if ($ifb->getIdent() ===
'response_onenotcorrect') {
167 foreach ($ifb->material as $material) {
168 $feedbacksgeneric[0] = $material;
170 foreach ($ifb->flow_mat as $fmat) {
171 foreach ($fmat->material as $material) {
172 $feedbacksgeneric[0] = $material;
182 $this->
object->setTitle($item->
getTitle());
184 $this->
object->setComment($item->
getComment());
185 $this->
object->setAuthor($item->
getAuthor());
186 $this->
object->setOwner($user_id);
188 $this->
object->setObjId($questionpool_id);
189 $this->
object->setShuffleAnswersEnabled($shuffle);
191 $this->
object->setOptionLabel($item->
getMetadataEntry(
'option_label_setting'));
192 $this->
object->setCustomTrueOptionLabel($item->
getMetadataEntry(
'custom_true_option_label'));
193 $this->
object->setCustomFalseOptionLabel($item->
getMetadataEntry(
'custom_false_option_label'));
194 $this->
object->setThumbSize(
198 $this->
object->saveToDb();
200 $answer_objects = [];
201 foreach ($answers as $answer_data) {
203 $answer->setImageFsDir($this->
object->getImagePath());
204 $answer->setImageWebDir($this->
object->getImagePathWeb());
205 $answer->setPosition($answer_data[
'answerorder']);
206 $answer->setAnswertext($answer_data[
'answertext']);
207 $answer->setCorrectness($answer_data[
'correctness']);
208 if (isset($answer_data[
'imagefile'][
'label'])) {
209 $answer->setImageFile($answer_data[
'imagefile'][
'label']);
211 $answer_objects[] = $answer;
213 $this->
object->setAnswers($answer_objects);
215 $this->
object->setAdditionalContentEditingMode(
219 $this->
object->saveToDb();
221 foreach ($answers as $answer) {
222 if (!is_array($answer[
'imagefile']) || $answer[
'imagefile'] === []) {
225 $image = base64_decode($answer[
'imagefile'][
'content']);
226 $imagepath = $this->
object->getImagePath();
227 if (!file_exists($imagepath)) {
230 $imagepath .= $answer[
'imagefile'][
'label'];
231 if ($fh = fopen($imagepath,
'wb')) {
232 $imagefile = fwrite($fh, $image);
234 $this->
object->generateThumbForFile(
235 $answer[
'imagefile'][
'label'],
236 $this->
object->getImagePath(),
237 $this->
object->getThumbSize()
243 if (!is_null($feedback_setting)) {
244 $this->
object->feedbackOBJ->saveSpecificFeedbackSetting($this->
object->getId(), $feedback_setting);
245 $this->
object->setSpecificFeedbackSetting($feedback_setting);
249 foreach ($feedbacks as $ident => $material) {
251 $feedbacks[$ident] = $m;
253 foreach ($feedbacksgeneric as $correctness => $material) {
255 $feedbacksgeneric[$correctness] = $m;
257 $questiontext = $this->
object->getQuestion();
258 $answers = $this->
object->getAnswers();
261 $importfile = $importdirectory . DIRECTORY_SEPARATOR . $mob[
"uri"];
264 $DIC[
'ilLog']->write(__METHOD__ .
': import mob from dir: ' . $importfile);
268 $questiontext = str_replace(
"src=\"" . $mob[
"mob"] .
"\"",
"src=\"" .
"il_" .
IL_INST_ID .
"_mob_" . $media_object->getId() .
"\"", $questiontext);
269 foreach ($answers as $answer_obj) {
270 if ($answer_obj->getAnswertext() ===
null) {
273 $answer_obj->setAnswertext(str_replace(
"src=\"" . $mob[
"mob"] .
"\"",
"src=\"" .
"il_" .
IL_INST_ID .
"_mob_" . $media_object->getId() .
"\"", $answer_obj->getAnswertext()));
275 foreach ($feedbacks as $ident => $material) {
276 $feedbacks[$ident] = str_replace(
"src=\"" . $mob[
"mob"] .
"\"",
"src=\"" .
"il_" .
IL_INST_ID .
"_mob_" . $media_object->getId() .
"\"", $material);
278 foreach ($feedbacksgeneric as $correctness => $material) {
279 $feedbacksgeneric[$correctness] = str_replace(
"src=\"" . $mob[
"mob"] .
"\"",
"src=\"" .
"il_" .
IL_INST_ID .
"_mob_" . $media_object->getId() .
"\"", $material);
284 foreach ($answers as $answer_obj) {
285 if ($answer_obj->getAnswertext() ===
null) {
290 foreach ($feedbacks as $ident => $material) {
291 $this->
object->feedbackOBJ->importSpecificAnswerFeedback(
298 foreach ($feedbacksgeneric as $correctness => $material) {
299 $this->
object->feedbackOBJ->importGenericFeedback(
305 $this->
object->saveToDb();
308 $q_1_id = $this->
object->getId();
309 $question_id = $this->
object->duplicate(
true,
"",
"", -1, $tst_id);
310 $tst_object->questions[$question_counter++] = $question_id;
311 $import_mapping[$item->
getIdent()] = [
"pool" => $q_1_id,
"test" => $question_id];
313 $import_mapping[$item->
getIdent()] = [
"pool" => $this->
object->getId(),
"test" => 0];
315 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.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
importSuggestedSolutions(int $question_id, array $solution_from_import)
Class for question imports.
static clear(string $a_var)
fromXML(string $importdirectory, int $user_id, ilQTIItem $item, int $questionpool_id, ?int $tst_id, ?ilObject &$tst_object, int &$question_counter, array $import_mapping)