ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.assTextSubsetExport.php
Go to the documentation of this file.
1 <?php
28 {
34  public function toXML($a_include_header = true, $a_include_binary = true, $a_shuffle = false, $test_output = false, $force_image_references = false): string
35  {
36  global $DIC;
37  $ilias = $DIC['ilias'];
38 
39  $a_xml_writer = new ilXmlWriter();
40  // set xml header
41  $a_xml_writer->xmlHeader();
42  $a_xml_writer->xmlStartTag("questestinterop");
43  $attrs = [
44  "ident" => "il_" . IL_INST_ID . "_qst_" . $this->object->getId(),
45  "title" => $this->object->getTitle(),
46  "maxattempts" => $this->object->getNrOfTries()
47  ];
48  $a_xml_writer->xmlStartTag("item", $attrs);
49  // add question description
50  $a_xml_writer->xmlElement("qticomment", null, $this->object->getComment());
51  $a_xml_writer->xmlStartTag("itemmetadata");
52  $a_xml_writer->xmlStartTag("qtimetadata");
53  $a_xml_writer->xmlStartTag("qtimetadatafield");
54  $a_xml_writer->xmlElement("fieldlabel", null, "ILIAS_VERSION");
55  $a_xml_writer->xmlElement("fieldentry", null, $ilias->getSetting("ilias_version"));
56  $a_xml_writer->xmlEndTag("qtimetadatafield");
57  $a_xml_writer->xmlStartTag("qtimetadatafield");
58  $a_xml_writer->xmlElement("fieldlabel", null, "QUESTIONTYPE");
59  $a_xml_writer->xmlElement("fieldentry", null, $this->object->getQuestionType());
60  $a_xml_writer->xmlEndTag("qtimetadatafield");
61  $a_xml_writer->xmlStartTag("qtimetadatafield");
62  $a_xml_writer->xmlElement("fieldlabel", null, "AUTHOR");
63  $a_xml_writer->xmlElement("fieldentry", null, $this->object->getAuthor());
64  $a_xml_writer->xmlEndTag("qtimetadatafield");
65 
66  // additional content editing information
67  $this->addAdditionalContentEditingModeInformation($a_xml_writer);
68  $this->addGeneralMetadata($a_xml_writer);
69 
70  $a_xml_writer->xmlStartTag("qtimetadatafield");
71  $a_xml_writer->xmlElement("fieldlabel", null, "textrating");
72  $a_xml_writer->xmlElement("fieldentry", null, $this->object->getTextRating());
73  $a_xml_writer->xmlEndTag("qtimetadatafield");
74  $a_xml_writer->xmlStartTag("qtimetadatafield");
75  $a_xml_writer->xmlElement("fieldlabel", null, "correctanswers");
76  $a_xml_writer->xmlElement("fieldentry", null, $this->object->getCorrectAnswers());
77  $a_xml_writer->xmlEndTag("qtimetadatafield");
78  $a_xml_writer->xmlStartTag("qtimetadatafield");
79  $a_xml_writer->xmlElement("fieldlabel", null, "points");
80  $a_xml_writer->xmlElement("fieldentry", null, $this->object->getPoints());
81  $a_xml_writer->xmlEndTag("qtimetadatafield");
82  $a_xml_writer->xmlEndTag("qtimetadata");
83  $a_xml_writer->xmlEndTag("itemmetadata");
84 
85  // PART I: qti presentation
86  $attrs = [
87  "label" => $this->object->getTitle()
88  ];
89  $a_xml_writer->xmlStartTag("presentation", $attrs);
90  // add flow to presentation
91  $a_xml_writer->xmlStartTag("flow");
92  // add material with question text to presentation
93  $this->addQTIMaterial($a_xml_writer, $this->object->getQuestion());
94  // add answers to presentation
95  for ($counter = 1; $counter <= $this->object->getCorrectAnswers(); $counter++) {
96  $attrs = [
97  "ident" => "TEXTSUBSET_$counter",
98  "rcardinality" => "Single"
99  ];
100  $a_xml_writer->xmlStartTag("response_str", $attrs);
101  $a_xml_writer = $this->addSuggestedSolution($a_xml_writer);
102  // shuffle output
103  $attrs = [
104  "fibtype" => "String",
105  "columns" => $this->object->getMaxTextboxWidth()
106  ];
107  $a_xml_writer->xmlStartTag("render_fib", $attrs);
108  $a_xml_writer->xmlEndTag("render_fib");
109  $a_xml_writer->xmlEndTag("response_str");
110  }
111 
112  $a_xml_writer->xmlEndTag("flow");
113  $a_xml_writer->xmlEndTag("presentation");
114 
115  // PART II: qti resprocessing
116  $a_xml_writer->xmlStartTag("resprocessing");
117  $a_xml_writer->xmlStartTag("outcomes");
118  $a_xml_writer->xmlStartTag("decvar");
119  $a_xml_writer->xmlEndTag("decvar");
120  $attribs = [
121  "varname" => "matches",
122  "defaultval" => "0"
123  ];
124  $a_xml_writer->xmlElement("decvar", $attribs, null);
125  $a_xml_writer->xmlEndTag("outcomes");
126  // add response conditions
127  for ($counter = 1; $counter <= $this->object->getCorrectAnswers(); $counter++) {
128  $scoregroups = &$this->object->joinAnswers();
129  foreach ($scoregroups as $points => $scoreanswers) {
130  $attrs = [
131  "continue" => "Yes"
132  ];
133  $a_xml_writer->xmlStartTag("respcondition", $attrs);
134  // qti conditionvar
135  $a_xml_writer->xmlStartTag("conditionvar");
136  $attrs = [
137  "respident" => "TEXTSUBSET_$counter"
138  ];
139  $a_xml_writer->xmlElement("varsubset", $attrs, join(",", $scoreanswers));
140  $a_xml_writer->xmlEndTag("conditionvar");
141  // qti setvar
142  $attrs = [
143  "varname" => "matches",
144  "action" => "Add"
145  ];
146  $a_xml_writer->xmlElement("setvar", $attrs, $points);
147  // qti displayfeedback
148  $attrs = [
149  "feedbacktype" => "Response",
150  "linkrefid" => "Matches_$counter"
151  ];
152  $a_xml_writer->xmlElement("displayfeedback", $attrs);
153  $a_xml_writer->xmlEndTag("respcondition");
154  }
155  }
156 
157  $feedback_allcorrect = $this->object->feedbackOBJ->getGenericFeedbackExportPresentation(
158  $this->object->getId(),
159  true
160  );
161  $feedback_onenotcorrect = $this->object->feedbackOBJ->getGenericFeedbackExportPresentation(
162  $this->object->getId(),
163  false
164  );
165  if (strlen($feedback_allcorrect . $feedback_onenotcorrect)) {
166  if (strlen($feedback_allcorrect)) {
167  $attrs = [
168  "continue" => "Yes"
169  ];
170  $a_xml_writer->xmlStartTag("respcondition", $attrs);
171  // qti conditionvar
172  $a_xml_writer->xmlStartTag("conditionvar");
173  $attrs = [
174  "respident" => "points"
175  ];
176  $a_xml_writer->xmlElement("varsubset", $attrs, $this->object->getMaximumPoints());
177  $a_xml_writer->xmlEndTag("conditionvar");
178  // qti displayfeedback
179  $attrs = [
180  "feedbacktype" => "Response",
181  "linkrefid" => "response_allcorrect"
182  ];
183  $a_xml_writer->xmlElement("displayfeedback", $attrs);
184  $a_xml_writer->xmlEndTag("respcondition");
185  }
186 
187  if (strlen($feedback_onenotcorrect)) {
188  $attrs = [
189  "continue" => "Yes"
190  ];
191  $a_xml_writer->xmlStartTag("respcondition", $attrs);
192  // qti conditionvar
193  $a_xml_writer->xmlStartTag("conditionvar");
194  $a_xml_writer->xmlStartTag("not");
195 
196  $attrs = [
197  "respident" => "points"
198  ];
199  $a_xml_writer->xmlElement("varsubset", $attrs, $this->object->getMaximumPoints());
200 
201  $a_xml_writer->xmlEndTag("not");
202  $a_xml_writer->xmlEndTag("conditionvar");
203  // qti displayfeedback
204  $attrs = [
205  "feedbacktype" => "Response",
206  "linkrefid" => "response_onenotcorrect"
207  ];
208  $a_xml_writer->xmlElement("displayfeedback", $attrs);
209  $a_xml_writer->xmlEndTag("respcondition");
210  }
211  }
212 
213  $a_xml_writer->xmlEndTag("resprocessing");
214 
215  // PART III: qti itemfeedback
216  for ($counter = 1; $counter <= $this->object->getCorrectAnswers(); $counter++) {
217  $attrs = [
218  "ident" => "Matches_$counter",
219  "view" => "All"
220  ];
221  $a_xml_writer->xmlStartTag("itemfeedback", $attrs);
222  // qti flow_mat
223  $a_xml_writer->xmlStartTag("flow_mat");
224  $a_xml_writer->xmlStartTag("material");
225  $a_xml_writer->xmlElement("mattext");
226  $a_xml_writer->xmlEndTag("material");
227  $a_xml_writer->xmlEndTag("flow_mat");
228  $a_xml_writer->xmlEndTag("itemfeedback");
229  }
230 
231  if (strlen($feedback_allcorrect)) {
232  $attrs = [
233  "ident" => "response_allcorrect",
234  "view" => "All"
235  ];
236  $a_xml_writer->xmlStartTag("itemfeedback", $attrs);
237  // qti flow_mat
238  $a_xml_writer->xmlStartTag("flow_mat");
239  $this->addQTIMaterial($a_xml_writer, $feedback_allcorrect);
240  $a_xml_writer->xmlEndTag("flow_mat");
241  $a_xml_writer->xmlEndTag("itemfeedback");
242  }
243  if (strlen($feedback_onenotcorrect)) {
244  $attrs = [
245  "ident" => "response_onenotcorrect",
246  "view" => "All"
247  ];
248  $a_xml_writer->xmlStartTag("itemfeedback", $attrs);
249  // qti flow_mat
250  $a_xml_writer->xmlStartTag("flow_mat");
251  $this->addQTIMaterial($a_xml_writer, $feedback_onenotcorrect);
252  $a_xml_writer->xmlEndTag("flow_mat");
253  $a_xml_writer->xmlEndTag("itemfeedback");
254  }
255 
256  $a_xml_writer = $this->addSolutionHints($a_xml_writer);
257 
258  $a_xml_writer->xmlEndTag("item");
259  $a_xml_writer->xmlEndTag("questestinterop");
260 
261  $xml = $a_xml_writer->xmlDumpMem(false);
262  if (!$a_include_header) {
263  $pos = strpos($xml, "?>");
264  $xml = substr($xml, $pos + 2);
265  }
266  return $xml;
267  }
268 }
const IL_INST_ID
Definition: constants.php:40
addQTIMaterial(ilXmlWriter $a_xml_writer, string $a_material, bool $close_material_tag=true, bool $add_mobs=true)
Class for question exports.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
addGeneralMetadata(ilXmlWriter $xmlwriter)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
global $DIC
Definition: shib_login.php:22
addAdditionalContentEditingModeInformation(ilXmlWriter $a_xml_writer)
adds a qti meta data field for ilias specific information of "additional content editing mode" (xml w...
addSuggestedSolution(ilXmlWriter $writer)
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...