4 include_once
"./Modules/TestQuestionPool/classes/export/qti12/class.assQuestionExport.php";
26 function toXML($a_include_header =
true, $a_include_binary =
true, $a_shuffle =
false, $test_output =
false, $force_image_references =
false)
30 include_once(
"./Services/Xml/classes/class.ilXmlWriter.php");
34 $a_xml_writer->xmlStartTag(
"questestinterop");
36 "ident" =>
"il_".IL_INST_ID.
"_qst_".$this->object->getId(),
37 "title" => $this->
object->getTitle(),
38 "maxattempts" => $this->
object->getNrOfTries()
40 $a_xml_writer->xmlStartTag(
"item", $attrs);
42 $a_xml_writer->xmlElement(
"qticomment", NULL, $this->object->getComment());
44 $workingtime = $this->
object->getEstimatedWorkingTime();
45 $duration = sprintf(
"P0Y0M0DT%dH%dM%dS", $workingtime[
"h"], $workingtime[
"m"], $workingtime[
"s"]);
46 $a_xml_writer->xmlElement(
"duration", NULL, $duration);
48 $a_xml_writer->xmlStartTag(
"itemmetadata");
49 $a_xml_writer->xmlStartTag(
"qtimetadata");
50 $a_xml_writer->xmlStartTag(
"qtimetadatafield");
51 $a_xml_writer->xmlElement(
"fieldlabel", NULL,
"ILIAS_VERSION");
52 $a_xml_writer->xmlElement(
"fieldentry", NULL, $ilias->getSetting(
"ilias_version"));
53 $a_xml_writer->xmlEndTag(
"qtimetadatafield");
54 $a_xml_writer->xmlStartTag(
"qtimetadatafield");
55 $a_xml_writer->xmlElement(
"fieldlabel", NULL,
"QUESTIONTYPE");
57 $a_xml_writer->xmlEndTag(
"qtimetadatafield");
58 $a_xml_writer->xmlStartTag(
"qtimetadatafield");
59 $a_xml_writer->xmlElement(
"fieldlabel", NULL,
"AUTHOR");
60 $a_xml_writer->xmlElement(
"fieldentry", NULL, $this->object->getAuthor());
61 $a_xml_writer->xmlEndTag(
"qtimetadatafield");
67 $a_xml_writer->xmlStartTag(
"qtimetadatafield");
68 $a_xml_writer->xmlElement(
"fieldlabel", NULL,
"thumb_size");
69 $a_xml_writer->xmlElement(
"fieldentry", NULL, $this->object->getThumbSize());
70 $a_xml_writer->xmlEndTag(
"qtimetadatafield");
72 $a_xml_writer->xmlStartTag(
"qtimetadatafield");
73 $a_xml_writer->xmlElement(
"fieldlabel", NULL,
"feedback_setting");
74 $a_xml_writer->xmlElement(
"fieldentry", NULL, $this->object->getSpecificFeedbackSetting());
75 $a_xml_writer->xmlEndTag(
"qtimetadatafield");
77 $a_xml_writer->xmlEndTag(
"qtimetadata");
78 $a_xml_writer->xmlEndTag(
"itemmetadata");
82 "label" => $this->object->getTitle()
84 $a_xml_writer->xmlStartTag(
"presentation", $attrs);
86 $a_xml_writer->xmlStartTag(
"flow");
88 $this->
object->addQTIMaterial($a_xml_writer, $this->object->getQuestion());
93 "rcardinality" =>
"Multiple" 95 $a_xml_writer->xmlStartTag(
"response_lid", $attrs);
96 $solution = $this->
object->getSuggestedSolution(0);
99 if (preg_match(
"/il_(\d*?)_(\w+)_(\d+)/", $solution[
"internal_link"], $matches))
101 $a_xml_writer->xmlStartTag(
"material");
102 $intlink =
"il_" . IL_INST_ID .
"_" . $matches[2] .
"_" . $matches[3];
103 if (strcmp($matches[1],
"") != 0)
105 $intlink = $solution[
"internal_link"];
108 "label" =>
"suggested_solution" 110 $a_xml_writer->xmlElement(
"mattext", $attrs, $intlink);
111 $a_xml_writer->xmlEndTag(
"material");
116 if ($this->object->getShuffle())
128 $a_xml_writer->xmlStartTag(
"render_choice", $attrs);
129 $answers =& $this->
object->getAnswers();
130 $akeys = array_keys($answers);
131 if ($this->object->getShuffle() && $a_shuffle)
133 $akeys = $this->
object->pcArrayShuffle($akeys);
136 foreach ($akeys as $index)
138 $answer = $answers[$index];
142 $a_xml_writer->xmlStartTag(
"response_label", $attrs);
144 if (strlen($answer->getImage()))
146 $this->
object->addQTIMaterial($a_xml_writer, $answer->getAnswertext(), FALSE, FALSE);
147 $imagetype =
"image/jpeg";
148 if (preg_match(
"/.*\.(png|gif)$/", $answer->getImage(), $matches))
150 $imagetype =
"image/" . $matches[1];
152 if ($force_image_references)
155 "imagtype" => $imagetype,
156 "label" => $answer->getImage(),
157 "uri" => $this->
object->getImagePathWeb() . $answer->getImage()
159 $a_xml_writer->xmlElement(
"matimage", $attrs);
163 $imagepath = $this->
object->getImagePath() . $answer->getImage();
164 $fh = @fopen($imagepath,
"rb");
167 $imagefile = fread($fh, filesize($imagepath));
169 $base64 = base64_encode($imagefile);
171 "imagtype" => $imagetype,
172 "label" => $answer->getImage(),
173 "embedded" =>
"base64" 175 $a_xml_writer->xmlElement(
"matimage", $attrs, $base64, FALSE, FALSE);
178 $a_xml_writer->xmlEndTag(
"material");
182 $this->
object->addQTIMaterial($a_xml_writer, $answer->getAnswertext());
184 $a_xml_writer->xmlEndTag(
"response_label");
186 $a_xml_writer->xmlEndTag(
"render_choice");
187 $a_xml_writer->xmlEndTag(
"response_lid");
188 $a_xml_writer->xmlEndTag(
"flow");
189 $a_xml_writer->xmlEndTag(
"presentation");
192 $a_xml_writer->xmlStartTag(
"resprocessing");
193 $a_xml_writer->xmlStartTag(
"outcomes");
194 $a_xml_writer->xmlStartTag(
"decvar");
195 $a_xml_writer->xmlEndTag(
"decvar");
196 $a_xml_writer->xmlEndTag(
"outcomes");
198 foreach ($answers as $index => $answer)
203 $a_xml_writer->xmlStartTag(
"respcondition", $attrs);
205 $a_xml_writer->xmlStartTag(
"conditionvar");
208 "respident" =>
"MCMR" 210 $a_xml_writer->xmlElement(
"varequal", $attrs, $index);
211 $a_xml_writer->xmlEndTag(
"conditionvar");
216 $a_xml_writer->xmlElement(
"setvar", $attrs, $answer->getPoints());
218 $linkrefid =
"response_$index";
220 "feedbacktype" =>
"Response",
221 "linkrefid" => $linkrefid
223 $a_xml_writer->xmlElement(
"displayfeedback", $attrs);
224 $a_xml_writer->xmlEndTag(
"respcondition");
228 $a_xml_writer->xmlStartTag(
"respcondition", $attrs);
231 $a_xml_writer->xmlStartTag(
"conditionvar");
234 "respident" =>
"MCMR" 236 $a_xml_writer->xmlStartTag(
"not");
237 $a_xml_writer->xmlElement(
"varequal", $attrs, $index);
238 $a_xml_writer->xmlEndTag(
"not");
239 $a_xml_writer->xmlEndTag(
"conditionvar");
244 $a_xml_writer->xmlElement(
"setvar", $attrs, $answer->getPointsUnchecked());
245 $a_xml_writer->xmlEndTag(
"respcondition");
247 $feedback_allcorrect = $this->
object->feedbackOBJ->getGenericFeedbackExportPresentation(
248 $this->object->getId(), true
250 if (strlen($feedback_allcorrect))
255 $a_xml_writer->xmlStartTag(
"respcondition", $attrs);
257 $a_xml_writer->xmlStartTag(
"conditionvar");
258 foreach ($answers as $index => $answer)
260 if ($answer->getPointsChecked() < $answer->getPointsUnchecked())
262 $a_xml_writer->xmlStartTag(
"not");
265 "respident" =>
"MCMR" 267 $a_xml_writer->xmlElement(
"varequal", $attrs, $index);
268 if ($answer->getPointsChecked() < $answer->getPointsUnchecked())
270 $a_xml_writer->xmlEndTag(
"not");
273 $a_xml_writer->xmlEndTag(
"conditionvar");
276 "feedbacktype" =>
"Response",
277 "linkrefid" =>
"response_allcorrect" 279 $a_xml_writer->xmlElement(
"displayfeedback", $attrs);
280 $a_xml_writer->xmlEndTag(
"respcondition");
282 $feedback_onenotcorrect = $this->
object->feedbackOBJ->getGenericFeedbackExportPresentation(
283 $this->object->getId(), false
285 if (strlen($feedback_onenotcorrect))
290 $a_xml_writer->xmlStartTag(
"respcondition", $attrs);
292 $a_xml_writer->xmlStartTag(
"conditionvar");
293 foreach ($answers as $index => $answer)
297 $a_xml_writer->xmlStartTag(
"or");
299 if ($answer->getPointsChecked() >= $answer->getPointsUnchecked())
301 $a_xml_writer->xmlStartTag(
"not");
304 "respident" =>
"MCMR" 306 $a_xml_writer->xmlElement(
"varequal", $attrs, $index);
307 if ($answer->getPointsChecked() >= $answer->getPointsUnchecked())
309 $a_xml_writer->xmlEndTag(
"not");
313 $a_xml_writer->xmlEndTag(
"or");
316 $a_xml_writer->xmlEndTag(
"conditionvar");
319 "feedbacktype" =>
"Response",
320 "linkrefid" =>
"response_onenotcorrect" 322 $a_xml_writer->xmlElement(
"displayfeedback", $attrs);
323 $a_xml_writer->xmlEndTag(
"respcondition");
325 $a_xml_writer->xmlEndTag(
"resprocessing");
328 foreach ($answers as $index => $answer)
330 $linkrefid =
"response_$index";
332 "ident" => $linkrefid,
335 $a_xml_writer->xmlStartTag(
"itemfeedback", $attrs);
337 $a_xml_writer->xmlStartTag(
"flow_mat");
338 $fb = $this->
object->feedbackOBJ->getSpecificAnswerFeedbackExportPresentation(
339 $this->object->getId(), $index
341 $this->
object->addQTIMaterial($a_xml_writer, $fb);
342 $a_xml_writer->xmlEndTag(
"flow_mat");
343 $a_xml_writer->xmlEndTag(
"itemfeedback");
345 if (strlen($feedback_allcorrect))
348 "ident" =>
"response_allcorrect",
351 $a_xml_writer->xmlStartTag(
"itemfeedback", $attrs);
353 $a_xml_writer->xmlStartTag(
"flow_mat");
354 $this->
object->addQTIMaterial($a_xml_writer, $feedback_allcorrect);
355 $a_xml_writer->xmlEndTag(
"flow_mat");
356 $a_xml_writer->xmlEndTag(
"itemfeedback");
358 if (strlen($feedback_onenotcorrect))
361 "ident" =>
"response_onenotcorrect",
364 $a_xml_writer->xmlStartTag(
"itemfeedback", $attrs);
366 $a_xml_writer->xmlStartTag(
"flow_mat");
367 $this->
object->addQTIMaterial($a_xml_writer, $feedback_onenotcorrect);
368 $a_xml_writer->xmlEndTag(
"flow_mat");
369 $a_xml_writer->xmlEndTag(
"itemfeedback");
372 $a_xml_writer->xmlEndTag(
"item");
373 $a_xml_writer->xmlEndTag(
"questestinterop");
375 $xml = $a_xml_writer->xmlDumpMem(FALSE);
376 if (!$a_include_header)
378 $pos = strpos($xml,
"?>");
379 $xml = substr($xml, $pos + 2);
const MULTIPLE_CHOICE_QUESTION_IDENTIFIER
Class for question exports.
addGeneralMetadata(ilXmlWriter $xmlwriter)
xmlHeader()
Writes xml header public.
addAdditionalContentEditingModeInformation(ilXmlWriter $a_xml_writer)
adds a qti meta data field for ilias specific information of "additional content editing mode" (xml w...
Class for multiple choice question exports.
toXML($a_include_header=true, $a_include_binary=true, $a_shuffle=false, $test_output=false, $force_image_references=false)
Returns a QTI xml representation of the question.