ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
assSingleChoiceImport Class Reference

Class for single choice question imports. More...

+ Inheritance diagram for assSingleChoiceImport:
+ Collaboration diagram for assSingleChoiceImport:

Public Member Functions

 fromXML (&$item, $questionpool_id, &$tst_id, &$tst_object, &$question_counter, &$import_mapping)
 Creates a question from a QTI file. More...
 
- Public Member Functions inherited from assQuestionImport
 __construct ($a_object)
 assQuestionImport constructor More...
 
 getFeedbackGeneric ($item)
 
 fromXML (&$item, $questionpool_id, &$tst_id, &$tst_object, &$question_counter, &$import_mapping)
 Creates a question from a QTI file. More...
 

Additional Inherited Members

- Data Fields inherited from assQuestionImport
 $object
 
- Protected Member Functions inherited from assQuestionImport
 fetchIndexFromFeedbackIdent ($feedbackIdent, $prefix='response_')
 
 getFeedbackAnswerSpecific (ilQTIItem $item, $prefix='response_')
 
 addGeneralMetadata (ilQTIItem $item)
 
 fetchLifecycle (ilQTIItem $item)
 
 getQplImportArchivDirectory ()
 returns the full path to extracted qpl import archiv (qpl import dir + qpl archiv subdir) More...
 
 getTstImportArchivDirectory ()
 returns the full path to extracted tst import archiv (tst import dir + tst archiv subdir) More...
 
 processNonAbstractedImageReferences ($text, $sourceNic)
 
 fetchAdditionalContentEditingModeInformation ($qtiItem)
 fetches the "additional content editing mode" information from qti item and falls back to ADDITIONAL_CONTENT_EDITING_MODE_DEFAULT when no or invalid information is given More...
 

Detailed Description

Class for single choice question imports.

assSingleChoiceImport is a class for single choice question imports

Author
Helmut Schottmüller helmu.nosp@m.t.sc.nosp@m.hottm.nosp@m.uell.nosp@m.er@ma.nosp@m.c.co.nosp@m.m
Version
$Id$

Definition at line 15 of file class.assSingleChoiceImport.php.

Member Function Documentation

◆ fromXML()

assSingleChoiceImport::fromXML ( $item,
  $questionpool_id,
$tst_id,
$tst_object,
$question_counter,
$import_mapping 
)

Creates a question from a QTI file.

Receives parameters from a QTI parser and creates a valid ILIAS question object

Parameters
object$itemThe QTI item object
integer$questionpool_idThe id of the parent questionpool
integer$tst_idThe id of the parent test if the question is part of a test
object$tst_objectA reference to the parent test object
integer$question_counterA reference to a question counter to count the questions of an imported question pool
array$import_mappingAn array containing references to included ILIAS objects @access public

Reimplemented from assQuestionImport.

Definition at line 30 of file class.assSingleChoiceImport.php.

31 {
32 global $DIC;
33 $ilUser = $DIC['ilUser'];
34
35 // empty session variable for imported xhtml mobs
36 unset($_SESSION["import_mob_xhtml"]);
37 $presentation = $item->getPresentation();
38 $duration = $item->getDuration();
39 $shuffle = 0;
40 $now = getdate();
41 $created = sprintf("%04d%02d%02d%02d%02d%02d", $now['year'], $now['mon'], $now['mday'], $now['hours'], $now['minutes'], $now['seconds']);
42 $answers = array();
43 foreach ($presentation->order as $entry) {
44 switch ($entry["type"]) {
45 case "response":
46 $response = $presentation->response[$entry["index"]];
47 $rendertype = $response->getRenderType();
48 switch (strtolower(get_class($response->getRenderType()))) {
49 case "ilqtirenderchoice":
50 $shuffle = $rendertype->getShuffle();
51 $answerorder = 0;
52 $foundimage = false;
53 foreach ($rendertype->response_labels as $response_label) {
54 $ident = $response_label->getIdent();
55 $answertext = "";
56 $answerimage = array();
57 foreach ($response_label->material as $mat) {
58 $embedded = false;
59 for ($m = 0; $m < $mat->getMaterialCount(); $m++) {
60 $foundmat = $mat->getMaterial($m);
61 if (strcmp($foundmat["type"], "mattext") == 0) {
62 }
63 if (strcmp($foundmat["type"], "matimage") == 0) {
64 if (strlen($foundmat["material"]->getEmbedded())) {
65 $embedded = true;
66 }
67 }
68 }
69 if ($embedded) {
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();
74 }
75 if (strcmp($foundmat["type"], "matimage") == 0) {
76 $foundimage = true;
77 $answerimage = array(
78 "imagetype" => $foundmat["material"]->getImageType(),
79 "label" => $foundmat["material"]->getLabel(),
80 "content" => $foundmat["material"]->getContent()
81 );
82 }
83 }
84 } else {
85 $answertext = $this->object->QTIMaterialToString($mat);
86 }
87 }
88 $answers[$ident] = array(
89 "answertext" => $answertext,
90 "imagefile" => $answerimage,
91 "points" => 0,
92 "answerorder" => $answerorder++,
93 "points_unchecked" => 0,
94 "action" => ""
95 );
96 }
97 break;
98 }
99 break;
100 }
101 }
102 $responses = array();
103 $feedbacks = array();
104 $feedbacksgeneric = array();
105 foreach ($item->resprocessing as $resprocessing) {
106 foreach ($resprocessing->respcondition as $respcondition) {
107 $ident = "";
108 $correctness = 1;
109 $conditionvar = $respcondition->getConditionvar();
110 foreach ($conditionvar->order as $order) {
111 switch ($order["field"]) {
112 case "arr_not":
113 $correctness = 0;
114 break;
115 case "varequal":
116 $ident = $conditionvar->varequal[$order["index"]]->getContent();
117 break;
118 }
119 }
120 foreach ($respcondition->setvar as $setvar) {
121 if (strcmp($ident, "") != 0) {
122 if ($correctness) {
123 $answers[$ident]["action"] = $setvar->getAction();
124 $answers[$ident]["points"] = $setvar->getContent();
125 if (count($respcondition->displayfeedback)) {
126 foreach ($respcondition->displayfeedback as $feedbackpointer) {
127 if (strlen($feedbackpointer->getLinkrefid())) {
128 foreach ($item->itemfeedback as $ifb) {
129 if (strcmp($ifb->getIdent(), "response_allcorrect") == 0) {
130 // found a feedback for the identifier
131 if (count($ifb->material)) {
132 foreach ($ifb->material as $material) {
133 $feedbacksgeneric[1] = $material;
134 }
135 }
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 $feedbacksgeneric[1] = $material;
141 }
142 }
143 }
144 }
145 } elseif (strcmp($ifb->getIdent(), "response_onenotcorrect") == 0) {
146 // found a feedback for the identifier
147 if (count($ifb->material)) {
148 foreach ($ifb->material as $material) {
149 $feedbacksgeneric[0] = $material;
150 }
151 }
152 if ((count($ifb->flow_mat) > 0)) {
153 foreach ($ifb->flow_mat as $fmat) {
154 if (count($fmat->material)) {
155 foreach ($fmat->material as $material) {
156 $feedbacksgeneric[0] = $material;
157 }
158 }
159 }
160 }
161 }
162 if (strcmp($ifb->getIdent(), $feedbackpointer->getLinkrefid()) == 0) {
163 // found a feedback for the identifier
164 if (count($ifb->material)) {
165 foreach ($ifb->material as $material) {
166 $feedbacks[$ident] = $material;
167 }
168 }
169 if ((count($ifb->flow_mat) > 0)) {
170 foreach ($ifb->flow_mat as $fmat) {
171 if (count($fmat->material)) {
172 foreach ($fmat->material as $material) {
173 $feedbacks[$ident] = $material;
174 }
175 }
176 }
177 }
178 }
179 }
180 }
181 }
182 }
183 } else {
184 $answers[$ident]["action"] = $setvar->getAction();
185 $answers[$ident]["points_unchecked"] = $setvar->getContent();
186 }
187 }
188 }
189 }
190 }
191 $this->addGeneralMetadata($item);
192 $this->object->setTitle($item->getTitle());
193 $this->object->setNrOfTries($item->getMaxattempts());
194 $this->object->setComment($item->getComment());
195 $this->object->setAuthor($item->getAuthor());
196 $this->object->setOwner($ilUser->getId());
197 $this->object->setQuestion($this->object->QTIMaterialToString($item->getQuestiontext()));
198 $this->object->setObjId($questionpool_id);
199 $this->object->setEstimatedWorkingTime($duration["h"], $duration["m"], $duration["s"]);
200 $this->object->setShuffle($shuffle);
201 $this->object->setThumbSize($item->getMetadataEntry("thumb_size"));
202 foreach ($answers as $answer) {
203 if ($item->getMetadataEntry('singleline') || (is_array($answer["imagefile"]) && count($answer["imagefile"]) > 0)) {
204 $this->object->isSingleline = true;
205 }
206 $this->object->addAnswer($answer["answertext"], $answer["points"], $answer["answerorder"], $answer["imagefile"]["label"]);
207 }
208 // additional content editing mode information
209 $this->object->setAdditionalContentEditingMode(
211 );
212 $this->object->saveToDb();
213 foreach ($answers as $answer) {
214 if (is_array($answer["imagefile"]) && (count($answer["imagefile"]) > 0)) {
215 $image = &base64_decode($answer["imagefile"]["content"]);
216 $imagepath = $this->object->getImagePath();
217 include_once "./Services/Utilities/classes/class.ilUtil.php";
218 if (!file_exists($imagepath)) {
219 ilUtil::makeDirParents($imagepath);
220 }
221 $imagepath .= $answer["imagefile"]["label"];
222 $fh = fopen($imagepath, "wb");
223 if ($fh == false) {
224 } else {
225 $imagefile = fwrite($fh, $image);
226 fclose($fh);
227 }
228 }
229 }
230
231 $feedbackSetting = $item->getMetadataEntry('feedback_setting');
232 if (!is_null($feedbackSetting)) {
233 $this->object->feedbackOBJ->saveSpecificFeedbackSetting($this->object->getId(), $feedbackSetting);
234 }
235
236 foreach ($feedbacks as $ident => $material) {
237 $m = $this->object->QTIMaterialToString($material);
238 $feedbacks[$ident] = $m;
239 }
240 foreach ($feedbacksgeneric as $correctness => $material) {
241 $m = $this->object->QTIMaterialToString($material);
242 $feedbacksgeneric[$correctness] = $m;
243 }
244 // handle the import of media objects in XHTML code
245 $questiontext = $this->object->getQuestion();
246 $answers = &$this->object->getAnswers();
247 if (is_array($_SESSION["import_mob_xhtml"])) {
248 include_once "./Services/MediaObjects/classes/class.ilObjMediaObject.php";
249 include_once "./Services/RTE/classes/class.ilRTE.php";
250 foreach ($_SESSION["import_mob_xhtml"] as $mob) {
251 if ($tst_id > 0) {
252 $importfile = $this->getTstImportArchivDirectory() . '/' . $mob["uri"];
253 } else {
254 $importfile = $this->getQplImportArchivDirectory() . '/' . $mob["uri"];
255 }
256
257 global $DIC; /* @var ILIAS\DI\Container $DIC */
258 $DIC['ilLog']->write(__METHOD__ . ': import mob from dir: ' . $importfile);
259
260 $media_object = &ilObjMediaObject::_saveTempFileAsMediaObject(basename($importfile), $importfile, false);
261 ilObjMediaObject::_saveUsage($media_object->getId(), "qpl:html", $this->object->getId());
262 $questiontext = str_replace("src=\"" . $mob["mob"] . "\"", "src=\"" . "il_" . IL_INST_ID . "_mob_" . $media_object->getId() . "\"", $questiontext);
263 foreach ($answers as $key => $value) {
264 $answer_obj = $answers[$key];
265 $answer_obj->setAnswertext(str_replace("src=\"" . $mob["mob"] . "\"", "src=\"" . "il_" . IL_INST_ID . "_mob_" . $media_object->getId() . "\"", $answer_obj->getAnswertext()));
266 }
267 foreach ($feedbacks as $ident => $material) {
268 $feedbacks[$ident] = str_replace("src=\"" . $mob["mob"] . "\"", "src=\"" . "il_" . IL_INST_ID . "_mob_" . $media_object->getId() . "\"", $material);
269 }
270 foreach ($feedbacksgeneric as $correctness => $material) {
271 $feedbacksgeneric[$correctness] = str_replace("src=\"" . $mob["mob"] . "\"", "src=\"" . "il_" . IL_INST_ID . "_mob_" . $media_object->getId() . "\"", $material);
272 }
273 }
274 }
275 $this->object->setQuestion(ilRTE::_replaceMediaObjectImageSrc($questiontext, 1));
276 foreach ($answers as $key => $value) {
277 $answer_obj = &$answers[$key];
278 $answer_obj->setAnswertext(ilRTE::_replaceMediaObjectImageSrc($answer_obj->getAnswertext(), 1));
279 }
280 foreach ($feedbacks as $ident => $material) {
281 $this->object->feedbackOBJ->importSpecificAnswerFeedback(
282 $this->object->getId(),
283 0,
284 $ident,
286 );
287 }
288 foreach ($feedbacksgeneric as $correctness => $material) {
289 $this->object->feedbackOBJ->importGenericFeedback(
290 $this->object->getId(),
291 $correctness,
293 );
294 }
295 $this->object->saveToDb();
296 if (count($item->suggested_solutions)) {
297 foreach ($item->suggested_solutions as $suggested_solution) {
298 $this->object->setSuggestedSolution($suggested_solution["solution"]->getContent(), $suggested_solution["gap_index"], true);
299 }
300 $this->object->saveToDb();
301 }
302 if ($tst_id > 0) {
303 $q_1_id = $this->object->getId();
304 $question_id = $this->object->duplicate(true, null, null, null, $tst_id);
305 $tst_object->questions[$question_counter++] = $question_id;
306 $import_mapping[$item->getIdent()] = array("pool" => $q_1_id, "test" => $question_id);
307 } else {
308 $import_mapping[$item->getIdent()] = array("pool" => $this->object->getId(), "test" => 0);
309 }
310 }
$_SESSION["AccountId"]
fetchAdditionalContentEditingModeInformation($qtiItem)
fetches the "additional content editing mode" information from qti item and falls back to ADDITIONAL_...
getTstImportArchivDirectory()
returns the full path to extracted tst import archiv (tst import dir + tst archiv subdir)
addGeneralMetadata(ilQTIItem $item)
getQplImportArchivDirectory()
returns the full path to extracted qpl import archiv (qpl import dir + qpl archiv subdir)
static _saveUsage($a_mob_id, $a_type, $a_id, $a_usage_hist_nr=0, $a_lang="-")
Save usage of mob within another container (e.g.
static _saveTempFileAsMediaObject($name, $tmp_name, $upload=true)
Create new media object and update page in db and return new media object.
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...
static makeDirParents($a_dir)
Create a new directory and all parent directories.
$response
$ilUser
Definition: imgupload.php:18
$DIC
Definition: xapitoken.php:46

References $_SESSION, $DIC, $ilUser, $response, ilRTE\_replaceMediaObjectImageSrc(), ilObjMediaObject\_saveTempFileAsMediaObject(), ilObjMediaObject\_saveUsage(), assQuestionImport\addGeneralMetadata(), assQuestionImport\fetchAdditionalContentEditingModeInformation(), assQuestionImport\getQplImportArchivDirectory(), assQuestionImport\getTstImportArchivDirectory(), and ilUtil\makeDirParents().

+ Here is the call graph for this function:

The documentation for this class was generated from the following file: