18 include_once
"./Modules/TestQuestionPool/classes/export/qti12/class.assQuestionExport.php";
36 public function toXML($a_include_header =
true, $a_include_binary =
true, $a_shuffle =
false, $test_output =
false, $force_image_references =
false): string
39 $ilias = $DIC[
'ilias'];
41 include_once(
"./Services/Xml/classes/class.ilXmlWriter.php");
44 $a_xml_writer->xmlHeader();
45 $a_xml_writer->xmlStartTag(
"questestinterop");
48 "title" => $this->
object->getTitle(),
49 "maxattempts" => $this->
object->getNrOfTries()
51 $a_xml_writer->xmlStartTag(
"item", $attrs);
53 $a_xml_writer->xmlElement(
"qticomment", null, $this->
object->getComment());
54 $a_xml_writer->xmlStartTag(
"itemmetadata");
55 $a_xml_writer->xmlStartTag(
"qtimetadata");
56 $a_xml_writer->xmlStartTag(
"qtimetadatafield");
57 $a_xml_writer->xmlElement(
"fieldlabel", null,
"ILIAS_VERSION");
58 $a_xml_writer->xmlElement(
"fieldentry", null, $ilias->getSetting(
"ilias_version"));
59 $a_xml_writer->xmlEndTag(
"qtimetadatafield");
60 $a_xml_writer->xmlStartTag(
"qtimetadatafield");
61 $a_xml_writer->xmlElement(
"fieldlabel", null,
"QUESTIONTYPE");
63 $a_xml_writer->xmlEndTag(
"qtimetadatafield");
64 $a_xml_writer->xmlStartTag(
"qtimetadatafield");
65 $a_xml_writer->xmlElement(
"fieldlabel", null,
"AUTHOR");
66 $a_xml_writer->xmlElement(
"fieldentry", null, $this->
object->getAuthor());
67 $a_xml_writer->xmlEndTag(
"qtimetadatafield");
73 $a_xml_writer->xmlStartTag(
"qtimetadatafield");
74 $a_xml_writer->xmlElement(
"fieldlabel", null,
"textrating");
75 $a_xml_writer->xmlElement(
"fieldentry", null, $this->
object->getTextRating());
76 $a_xml_writer->xmlEndTag(
"qtimetadatafield");
77 $a_xml_writer->xmlStartTag(
"qtimetadatafield");
78 $a_xml_writer->xmlElement(
"fieldlabel", null,
"correctanswers");
79 $a_xml_writer->xmlElement(
"fieldentry", null, $this->
object->getCorrectAnswers());
80 $a_xml_writer->xmlEndTag(
"qtimetadatafield");
81 $a_xml_writer->xmlStartTag(
"qtimetadatafield");
82 $a_xml_writer->xmlElement(
"fieldlabel", null,
"points");
83 $a_xml_writer->xmlElement(
"fieldentry", null, $this->
object->getPoints());
84 $a_xml_writer->xmlEndTag(
"qtimetadatafield");
85 $a_xml_writer->xmlEndTag(
"qtimetadata");
86 $a_xml_writer->xmlEndTag(
"itemmetadata");
90 "label" => $this->
object->getTitle()
92 $a_xml_writer->xmlStartTag(
"presentation", $attrs);
94 $a_xml_writer->xmlStartTag(
"flow");
96 $this->
object->addQTIMaterial($a_xml_writer, $this->
object->getQuestion());
98 for ($counter = 1; $counter <= $this->
object->getCorrectAnswers(); $counter++) {
100 "ident" =>
"TEXTSUBSET_$counter",
101 "rcardinality" =>
"Single" 103 $a_xml_writer->xmlStartTag(
"response_str", $attrs);
104 $solution = $this->
object->getSuggestedSolution(0);
105 if ($solution !== null && count($solution)) {
106 if (preg_match(
"/il_(\d*?)_(\w+)_(\d+)/", $solution[
"internal_link"], $matches)) {
107 $a_xml_writer->xmlStartTag(
"material");
108 $intlink =
"il_" .
IL_INST_ID .
"_" . $matches[2] .
"_" . $matches[3];
109 if (strcmp($matches[1],
"") != 0) {
110 $intlink = $solution[
"internal_link"];
113 "label" =>
"suggested_solution" 115 $a_xml_writer->xmlElement(
"mattext", $attrs, $intlink);
116 $a_xml_writer->xmlEndTag(
"material");
121 "fibtype" =>
"String",
122 "columns" => $this->
object->getMaxTextboxWidth()
124 $a_xml_writer->xmlStartTag(
"render_fib", $attrs);
125 $a_xml_writer->xmlEndTag(
"render_fib");
126 $a_xml_writer->xmlEndTag(
"response_str");
129 $a_xml_writer->xmlEndTag(
"flow");
130 $a_xml_writer->xmlEndTag(
"presentation");
133 $a_xml_writer->xmlStartTag(
"resprocessing");
134 $a_xml_writer->xmlStartTag(
"outcomes");
135 $a_xml_writer->xmlStartTag(
"decvar");
136 $a_xml_writer->xmlEndTag(
"decvar");
138 "varname" =>
"matches",
141 $a_xml_writer->xmlElement(
"decvar", $attribs, null);
142 $a_xml_writer->xmlEndTag(
"outcomes");
144 for ($counter = 1; $counter <= $this->
object->getCorrectAnswers(); $counter++) {
145 $scoregroups = &$this->
object->joinAnswers();
146 foreach ($scoregroups as $points => $scoreanswers) {
150 $a_xml_writer->xmlStartTag(
"respcondition", $attrs);
152 $a_xml_writer->xmlStartTag(
"conditionvar");
154 "respident" =>
"TEXTSUBSET_$counter" 156 $a_xml_writer->xmlElement(
"varsubset", $attrs, join(
",", $scoreanswers));
157 $a_xml_writer->xmlEndTag(
"conditionvar");
160 "varname" =>
"matches",
163 $a_xml_writer->xmlElement(
"setvar", $attrs, $points);
166 "feedbacktype" =>
"Response",
167 "linkrefid" =>
"Matches_$counter" 169 $a_xml_writer->xmlElement(
"displayfeedback", $attrs);
170 $a_xml_writer->xmlEndTag(
"respcondition");
174 $feedback_allcorrect = $this->
object->feedbackOBJ->getGenericFeedbackExportPresentation(
178 $feedback_onenotcorrect = $this->
object->feedbackOBJ->getGenericFeedbackExportPresentation(
182 if (strlen($feedback_allcorrect . $feedback_onenotcorrect)) {
183 if (strlen($feedback_allcorrect)) {
187 $a_xml_writer->xmlStartTag(
"respcondition", $attrs);
189 $a_xml_writer->xmlStartTag(
"conditionvar");
191 "respident" =>
"points" 193 $a_xml_writer->xmlElement(
"varsubset", $attrs, $this->
object->getMaximumPoints());
194 $a_xml_writer->xmlEndTag(
"conditionvar");
197 "feedbacktype" =>
"Response",
198 "linkrefid" =>
"response_allcorrect" 200 $a_xml_writer->xmlElement(
"displayfeedback", $attrs);
201 $a_xml_writer->xmlEndTag(
"respcondition");
204 if (strlen($feedback_onenotcorrect)) {
208 $a_xml_writer->xmlStartTag(
"respcondition", $attrs);
210 $a_xml_writer->xmlStartTag(
"conditionvar");
211 $a_xml_writer->xmlStartTag(
"not");
214 "respident" =>
"points" 216 $a_xml_writer->xmlElement(
"varsubset", $attrs, $this->
object->getMaximumPoints());
218 $a_xml_writer->xmlEndTag(
"not");
219 $a_xml_writer->xmlEndTag(
"conditionvar");
222 "feedbacktype" =>
"Response",
223 "linkrefid" =>
"response_onenotcorrect" 225 $a_xml_writer->xmlElement(
"displayfeedback", $attrs);
226 $a_xml_writer->xmlEndTag(
"respcondition");
230 $a_xml_writer->xmlEndTag(
"resprocessing");
233 for ($counter = 1; $counter <= $this->
object->getCorrectAnswers(); $counter++) {
235 "ident" =>
"Matches_$counter",
238 $a_xml_writer->xmlStartTag(
"itemfeedback", $attrs);
240 $a_xml_writer->xmlStartTag(
"flow_mat");
241 $a_xml_writer->xmlStartTag(
"material");
242 $a_xml_writer->xmlElement(
"mattext");
243 $a_xml_writer->xmlEndTag(
"material");
244 $a_xml_writer->xmlEndTag(
"flow_mat");
245 $a_xml_writer->xmlEndTag(
"itemfeedback");
248 if (strlen($feedback_allcorrect)) {
250 "ident" =>
"response_allcorrect",
253 $a_xml_writer->xmlStartTag(
"itemfeedback", $attrs);
255 $a_xml_writer->xmlStartTag(
"flow_mat");
256 $this->
object->addQTIMaterial($a_xml_writer, $feedback_allcorrect);
257 $a_xml_writer->xmlEndTag(
"flow_mat");
258 $a_xml_writer->xmlEndTag(
"itemfeedback");
260 if (strlen($feedback_onenotcorrect)) {
262 "ident" =>
"response_onenotcorrect",
265 $a_xml_writer->xmlStartTag(
"itemfeedback", $attrs);
267 $a_xml_writer->xmlStartTag(
"flow_mat");
268 $this->
object->addQTIMaterial($a_xml_writer, $feedback_onenotcorrect);
269 $a_xml_writer->xmlEndTag(
"flow_mat");
270 $a_xml_writer->xmlEndTag(
"itemfeedback");
275 $a_xml_writer->xmlEndTag(
"item");
276 $a_xml_writer->xmlEndTag(
"questestinterop");
278 $xml = $a_xml_writer->xmlDumpMem(
false);
279 if (!$a_include_header) {
280 $pos = strpos(
$xml,
"?>");
const TEXTSUBSET_QUESTION_IDENTIFIER
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
addGeneralMetadata(ilXmlWriter $xmlwriter)
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)
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...