20 include_once
"./Modules/TestQuestionPool/classes/export/qti12/class.assQuestionExport.php";
41 $this->randomGroup = $DIC->refinery()->random();
49 public function toXML($a_include_header =
true, $a_include_binary =
true, $a_shuffle =
false, $test_output =
false, $force_image_references =
false): string
52 $ilias = $DIC[
'ilias'];
54 include_once
"./Services/Math/classes/class.EvalMath.php";
56 $eval->suppress_errors =
true;
57 include_once(
"./Services/Xml/classes/class.ilXmlWriter.php");
60 $a_xml_writer->xmlHeader();
61 $a_xml_writer->xmlStartTag(
"questestinterop");
64 "title" => $this->
object->getTitle(),
65 "maxattempts" => $this->
object->getNrOfTries()
67 $a_xml_writer->xmlStartTag(
"item", $attrs);
69 $a_xml_writer->xmlElement(
"qticomment", null, $this->
object->getComment());
70 $a_xml_writer->xmlStartTag(
"itemmetadata");
71 $a_xml_writer->xmlStartTag(
"qtimetadata");
72 $a_xml_writer->xmlStartTag(
"qtimetadatafield");
73 $a_xml_writer->xmlElement(
"fieldlabel", null,
"ILIAS_VERSION");
74 $a_xml_writer->xmlElement(
"fieldentry", null, $ilias->getSetting(
"ilias_version"));
75 $a_xml_writer->xmlEndTag(
"qtimetadatafield");
76 $a_xml_writer->xmlStartTag(
"qtimetadatafield");
77 $a_xml_writer->xmlElement(
"fieldlabel", null,
"QUESTIONTYPE");
79 $a_xml_writer->xmlEndTag(
"qtimetadatafield");
80 $a_xml_writer->xmlStartTag(
"qtimetadatafield");
81 $a_xml_writer->xmlElement(
"fieldlabel", null,
"AUTHOR");
82 $a_xml_writer->xmlElement(
"fieldentry", null, $this->
object->getAuthor());
83 $a_xml_writer->xmlEndTag(
"qtimetadatafield");
89 $a_xml_writer->xmlStartTag(
"qtimetadatafield");
90 $a_xml_writer->xmlElement(
"fieldlabel", null,
"textgaprating");
91 $a_xml_writer->xmlElement(
"fieldentry", null, $this->
object->getTextgapRating());
92 $a_xml_writer->xmlEndTag(
"qtimetadatafield");
94 $a_xml_writer->xmlStartTag(
"qtimetadatafield");
95 $a_xml_writer->xmlElement(
"fieldlabel", null,
"fixedTextLength");
96 $a_xml_writer->xmlElement(
"fieldentry", null, $this->
object->getFixedTextLength());
97 $a_xml_writer->xmlEndTag(
"qtimetadatafield");
99 $a_xml_writer->xmlStartTag(
"qtimetadatafield");
100 $a_xml_writer->xmlElement(
"fieldlabel", null,
"identicalScoring");
101 $a_xml_writer->xmlElement(
"fieldentry", null, $this->
object->getIdenticalScoring());
102 $a_xml_writer->xmlEndTag(
"qtimetadatafield");
104 $a_xml_writer->xmlStartTag(
"qtimetadatafield");
105 $a_xml_writer->xmlElement(
"fieldlabel", null,
"feedback_mode");
106 $a_xml_writer->xmlElement(
"fieldentry", null, $this->
object->getFeedbackMode());
107 $a_xml_writer->xmlEndTag(
"qtimetadatafield");
109 $a_xml_writer->xmlStartTag(
"qtimetadatafield");
110 $a_xml_writer->xmlElement(
"fieldlabel", null,
"combinations");
111 $a_xml_writer->xmlElement(
"fieldentry", null, base64_encode(json_encode($this->
object->getGapCombinations())));
112 $a_xml_writer->xmlEndTag(
"qtimetadatafield");
114 $a_xml_writer->xmlEndTag(
"qtimetadata");
115 $a_xml_writer->xmlEndTag(
"itemmetadata");
119 "label" => $this->
object->getTitle()
121 $a_xml_writer->xmlStartTag(
"presentation", $attrs);
123 $a_xml_writer->xmlStartTag(
"flow");
125 $questionText = $this->
object->getQuestion() ? $this->
object->getQuestion() :
' ';
126 $this->
object->addQTIMaterial($a_xml_writer, $questionText);
128 $text_parts = preg_split(
"/\[gap.*?\[\/gap\]/", $this->
object->getClozeText());
131 for (
$i = 0;
$i <= $this->
object->getGapCount();
$i++) {
132 $this->
object->addQTIMaterial($a_xml_writer, $text_parts[
$i]);
134 if ($i < $this->
object->getGapCount()) {
136 $gap = $this->
object->getGap($i);
137 switch ($gap->getType()) {
142 "rcardinality" =>
"Single" 144 $a_xml_writer->xmlStartTag(
"response_str", $attrs);
145 $solution = $this->
object->getSuggestedSolution($i);
147 if ($solution !== null && count($solution)) {
148 if (preg_match(
"/il_(\d*?)_(\w+)_(\d+)/", $solution[
"internal_link"], $matches)) {
150 "label" =>
"suggested_solution" 152 $a_xml_writer->xmlStartTag(
"material", $attrs);
153 $intlink =
"il_" .
IL_INST_ID .
"_" . $matches[2] .
"_" . $matches[3];
154 if (strcmp($matches[1],
"") != 0) {
155 $intlink = $solution[
"internal_link"];
157 $a_xml_writer->xmlElement(
"mattext", null, $intlink);
158 $a_xml_writer->xmlEndTag(
"material");
162 $attrs = array(
"shuffle" => ($gap->getShuffle() ?
"Yes" :
"No"));
163 $a_xml_writer->xmlStartTag(
"render_choice", $attrs);
166 foreach ($gap->getItems($this->randomGroup->dontShuffle()) as $answeritem) {
168 "ident" => $answeritem->getOrder()
170 $a_xml_writer->xmlStartTag(
"response_label", $attrs);
171 $a_xml_writer->xmlStartTag(
"material");
172 $a_xml_writer->xmlElement(
"mattext", null, $answeritem->getAnswertext());
173 $a_xml_writer->xmlEndTag(
"material");
174 $a_xml_writer->xmlEndTag(
"response_label");
176 $a_xml_writer->xmlEndTag(
"render_choice");
177 $a_xml_writer->xmlEndTag(
"response_str");
183 "rcardinality" =>
"Single" 185 $a_xml_writer->xmlStartTag(
"response_str", $attrs);
186 $solution = $this->
object->getSuggestedSolution($i);
187 if ($solution !== null && count($solution)) {
188 if (preg_match(
"/il_(\d*?)_(\w+)_(\d+)/", $solution[
"internal_link"], $matches)) {
190 "label" =>
"suggested_solution" 192 $a_xml_writer->xmlStartTag(
"material", $attrs);
193 $intlink =
"il_" .
IL_INST_ID .
"_" . $matches[2] .
"_" . $matches[3];
194 if (strcmp($matches[1],
"") != 0) {
195 $intlink = $solution[
"internal_link"];
197 $a_xml_writer->xmlElement(
"mattext", null, $intlink);
198 $a_xml_writer->xmlEndTag(
"material");
202 "fibtype" =>
"String",
204 "columns" => $gap->getMaxWidth(),
205 "maxchars" => $gap->getGapSize()
207 $a_xml_writer->xmlStartTag(
"render_fib", $attrs);
208 $a_xml_writer->xmlEndTag(
"render_fib");
209 $a_xml_writer->xmlEndTag(
"response_str");
215 "numtype" =>
"Decimal",
216 "rcardinality" =>
"Single" 218 $a_xml_writer->xmlStartTag(
"response_num", $attrs);
219 $solution = $this->
object->getSuggestedSolution($i);
220 if ($solution !== null && count($solution)) {
221 if (preg_match(
"/il_(\d*?)_(\w+)_(\d+)/", $solution[
"internal_link"], $matches)) {
223 "label" =>
"suggested_solution" 225 $a_xml_writer->xmlStartTag(
"material", $attrs);
226 $intlink =
"il_" .
IL_INST_ID .
"_" . $matches[2] .
"_" . $matches[3];
227 if (strcmp($matches[1],
"") != 0) {
228 $intlink = $solution[
"internal_link"];
230 $a_xml_writer->xmlElement(
"mattext", null, $intlink);
231 $a_xml_writer->xmlEndTag(
"material");
234 $answeritem = $gap->getItem(0);
236 "fibtype" =>
"Decimal",
238 "columns" => $gap->getMaxWidth(),
239 "maxchars" => $gap->getGapSize()
241 if (is_object($answeritem)) {
242 if ($eval->e($answeritem->getLowerBound()) !==
false) {
243 $attrs[
"minnumber"] = $answeritem->getLowerBound();
245 if ($eval->e($answeritem->getUpperBound()) !==
false) {
246 $attrs[
"maxnumber"] = $answeritem->getUpperBound();
249 $a_xml_writer->xmlStartTag(
"render_fib", $attrs);
250 $a_xml_writer->xmlEndTag(
"render_fib");
251 $a_xml_writer->xmlEndTag(
"response_num");
256 $a_xml_writer->xmlEndTag(
"flow");
257 $a_xml_writer->xmlEndTag(
"presentation");
260 $a_xml_writer->xmlStartTag(
"resprocessing");
261 $a_xml_writer->xmlStartTag(
"outcomes");
262 $a_xml_writer->xmlStartTag(
"decvar");
263 $a_xml_writer->xmlEndTag(
"decvar");
264 $a_xml_writer->xmlEndTag(
"outcomes");
267 for (
$i = 0;
$i < $this->
object->getGapCount();
$i++) {
268 $gap = $this->
object->getGap(
$i);
269 switch ($gap->getType()) {
271 foreach ($gap->getItems($this->randomGroup->dontShuffle()) as $answer) {
275 $a_xml_writer->xmlStartTag(
"respcondition", $attrs);
277 $a_xml_writer->xmlStartTag(
"conditionvar");
280 "respident" =>
"gap_$i" 282 $a_xml_writer->xmlElement(
"varequal", $attrs, $answer->getAnswertext());
283 $a_xml_writer->xmlEndTag(
"conditionvar");
288 $a_xml_writer->xmlElement(
"setvar", $attrs, $answer->getPoints());
290 $linkrefid =
"$i" .
"_Response_" . $answer->getOrder();
292 "feedbacktype" =>
"Response",
293 "linkrefid" => $linkrefid
295 $a_xml_writer->xmlElement(
"displayfeedback", $attrs);
296 $a_xml_writer->xmlEndTag(
"respcondition");
301 foreach ($gap->getItems($this->randomGroup->dontShuffle()) as $answer) {
305 $a_xml_writer->xmlStartTag(
"respcondition", $attrs);
307 $a_xml_writer->xmlStartTag(
"conditionvar");
309 "respident" =>
"gap_$i" 311 $a_xml_writer->xmlElement(
"varequal", $attrs, $answer->getAnswertext());
312 $a_xml_writer->xmlEndTag(
"conditionvar");
317 $a_xml_writer->xmlElement(
"setvar", $attrs, $answer->getPoints());
319 $linkrefid =
"$i" .
"_Response_" . $answer->getOrder();
321 "feedbacktype" =>
"Response",
322 "linkrefid" => $linkrefid
324 $a_xml_writer->xmlElement(
"displayfeedback", $attrs);
325 $a_xml_writer->xmlEndTag(
"respcondition");
331 $feedback_allcorrect = $this->
object->feedbackOBJ->getGenericFeedbackExportPresentation(
335 if (strlen($feedback_allcorrect)) {
339 $a_xml_writer->xmlStartTag(
"respcondition", $attrs);
341 $a_xml_writer->xmlStartTag(
"conditionvar");
343 for (
$i = 0;
$i < $this->
object->getGapCount();
$i++) {
344 $gap = $this->
object->getGap(
$i);
345 $indexes = $gap->getBestSolutionIndexes();
347 $a_xml_writer->xmlStartTag(
"and");
349 switch ($gap->getType()) {
354 foreach ($indexes as
$key) {
356 $a_xml_writer->xmlStartTag(
"or");
359 "respident" =>
"gap_$i" 361 $answer = $gap->getItem($key);
362 $a_xml_writer->xmlElement(
"varequal", $attrs, $answer->getAnswertext());
364 $a_xml_writer->xmlEndTag(
"or");
371 $a_xml_writer->xmlEndTag(
"and");
374 $a_xml_writer->xmlEndTag(
"conditionvar");
377 "feedbacktype" =>
"Response",
378 "linkrefid" =>
"response_allcorrect" 380 $a_xml_writer->xmlElement(
"displayfeedback", $attrs);
381 $a_xml_writer->xmlEndTag(
"respcondition");
383 $feedback_onenotcorrect = $this->
object->feedbackOBJ->getGenericFeedbackExportPresentation(
387 if (strlen($feedback_onenotcorrect)) {
391 $a_xml_writer->xmlStartTag(
"respcondition", $attrs);
393 $a_xml_writer->xmlStartTag(
"conditionvar");
395 $a_xml_writer->xmlStartTag(
"not");
396 for (
$i = 0;
$i < $this->
object->getGapCount();
$i++) {
397 $gap = $this->
object->getGap(
$i);
398 $indexes = $gap->getBestSolutionIndexes();
400 $a_xml_writer->xmlStartTag(
"and");
402 switch ($gap->getType()) {
407 foreach ($indexes as
$key) {
409 $a_xml_writer->xmlStartTag(
"or");
412 "respident" =>
"gap_$i" 414 $answer = $gap->getItem($key);
415 $a_xml_writer->xmlElement(
"varequal", $attrs, $answer->getAnswertext());
417 $a_xml_writer->xmlEndTag(
"or");
424 $a_xml_writer->xmlEndTag(
"and");
427 $a_xml_writer->xmlEndTag(
"not");
428 $a_xml_writer->xmlEndTag(
"conditionvar");
431 "feedbacktype" =>
"Response",
432 "linkrefid" =>
"response_onenotcorrect" 434 $a_xml_writer->xmlElement(
"displayfeedback", $attrs);
435 $a_xml_writer->xmlEndTag(
"respcondition");
438 $a_xml_writer->xmlEndTag(
"resprocessing");
441 for (
$i = 0;
$i < $this->
object->getGapCount();
$i++) {
442 $gap = $this->
object->getGap(
$i);
443 switch ($gap->getType()) {
452 if (strlen($feedback_allcorrect)) {
454 "ident" =>
"response_allcorrect",
457 $a_xml_writer->xmlStartTag(
"itemfeedback", $attrs);
459 $a_xml_writer->xmlStartTag(
"flow_mat");
460 $this->
object->addQTIMaterial($a_xml_writer, $feedback_allcorrect);
461 $a_xml_writer->xmlEndTag(
"flow_mat");
462 $a_xml_writer->xmlEndTag(
"itemfeedback");
464 if (strlen($feedback_onenotcorrect)) {
466 "ident" =>
"response_onenotcorrect",
469 $a_xml_writer->xmlStartTag(
"itemfeedback", $attrs);
471 $a_xml_writer->xmlStartTag(
"flow_mat");
472 $this->
object->addQTIMaterial($a_xml_writer, $feedback_onenotcorrect);
473 $a_xml_writer->xmlEndTag(
"flow_mat");
474 $a_xml_writer->xmlEndTag(
"itemfeedback");
479 $a_xml_writer->xmlEndTag(
"item");
480 $a_xml_writer->xmlEndTag(
"questestinterop");
482 $xml = $a_xml_writer->xmlDumpMem(
false);
483 if (!$a_include_header) {
484 $pos = strpos(
$xml,
"?>");
495 require_once
'Modules/TestQuestionPool/classes/feedback/class.ilAssSpecificFeedbackIdentifierList.php';
497 $feedbackIdentifierList->load($this->
object->getId());
499 foreach ($feedbackIdentifierList as $fbIdentifier) {
500 $feedback = $this->
object->feedbackOBJ->getSpecificAnswerFeedbackExportPresentation(
502 $fbIdentifier->getQuestionIndex(),
503 $fbIdentifier->getAnswerIndex()
511 $this->
object->addQTIMaterial($xmlWriter, $feedback);
524 return "{$fbIdentifier->getQuestionIndex()}_{$fbIdentifier->getAnswerIndex()}";
const CLOZE_TEXT
Cloze question constants.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
buildQtiExportIdent(ilAssSpecificFeedbackIdentifier $fbIdentifier)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
addGeneralMetadata(ilXmlWriter $xmlwriter)
xmlEndTag(string $tag)
Writes an endtag.
exportAnswerSpecificFeedbacks(ilXmlWriter $xmlWriter)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
addAdditionalContentEditingModeInformation(ilXmlWriter $a_xml_writer)
adds a qti meta data field for ilias specific information of "additional content editing mode" (xml w...
addSolutionHints(ilXmlWriter $writer)
__construct(Container $dic, ilPlugin $plugin)
xmlStartTag(string $tag, ?array $attrs=null, bool $empty=false, bool $encode=true, bool $escape=true)
Writes a starttag.
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 Returns a QTI xml representation of the question and...
const CLOZE_TEST_IDENTIFIER
Question identifier constants.