18 include_once
"./Modules/Test/classes/inc.AssessmentConstants.php";
44 $this->
object = $a_object;
52 foreach ($answers as
$index => $answer) {
53 $linkrefid =
"response_$index";
55 "ident" => $linkrefid,
61 $fb = $this->
object->feedbackOBJ->getSpecificAnswerFeedbackExportPresentation(
66 $this->
object->addQTIMaterial($a_xml_writer, $fb);
82 $feedback_allcorrect = $this->
object->feedbackOBJ->getGenericFeedbackExportPresentation(
86 $feedback_onenotcorrect = $this->
object->feedbackOBJ->getGenericFeedbackExportPresentation(
90 if (strlen($feedback_allcorrect . $feedback_onenotcorrect)) {
91 $a_xml_writer->xmlStartTag(
"resprocessing");
92 $a_xml_writer->xmlStartTag(
"outcomes");
93 $a_xml_writer->xmlStartTag(
"decvar");
94 $a_xml_writer->xmlEndTag(
"decvar");
95 $a_xml_writer->xmlEndTag(
"outcomes");
97 if (strlen($feedback_allcorrect)) {
101 $a_xml_writer->xmlStartTag(
"respcondition", $attrs);
103 $a_xml_writer->xmlStartTag(
"conditionvar");
105 "respident" =>
"points" 107 $a_xml_writer->xmlElement(
"varequal", $attrs, $this->
object->getPoints());
108 $a_xml_writer->xmlEndTag(
"conditionvar");
111 "feedbacktype" =>
"Response",
112 "linkrefid" =>
"response_allcorrect" 114 $a_xml_writer->xmlElement(
"displayfeedback", $attrs);
115 $a_xml_writer->xmlEndTag(
"respcondition");
118 if (strlen($feedback_onenotcorrect)) {
122 $a_xml_writer->xmlStartTag(
"respcondition", $attrs);
124 $a_xml_writer->xmlStartTag(
"conditionvar");
125 $a_xml_writer->xmlStartTag(
"not");
127 "respident" =>
"points" 129 $a_xml_writer->xmlElement(
"varequal", $attrs, $this->
object->getPoints());
130 $a_xml_writer->xmlEndTag(
"not");
131 $a_xml_writer->xmlEndTag(
"conditionvar");
134 "feedbacktype" =>
"Response",
135 "linkrefid" =>
"response_onenotcorrect" 137 $a_xml_writer->xmlElement(
"displayfeedback", $attrs);
138 $a_xml_writer->xmlEndTag(
"respcondition");
140 $a_xml_writer->xmlEndTag(
"resprocessing");
143 if (strlen($feedback_allcorrect)) {
145 "ident" =>
"response_allcorrect",
148 $a_xml_writer->xmlStartTag(
"itemfeedback", $attrs);
150 $a_xml_writer->xmlStartTag(
"flow_mat");
151 $this->
object->addQTIMaterial($a_xml_writer, $feedback_allcorrect);
152 $a_xml_writer->xmlEndTag(
"flow_mat");
153 $a_xml_writer->xmlEndTag(
"itemfeedback");
155 if (strlen($feedback_onenotcorrect)) {
157 "ident" =>
"response_onenotcorrect",
160 $a_xml_writer->xmlStartTag(
"itemfeedback", $attrs);
162 $a_xml_writer->xmlStartTag(
"flow_mat");
163 $this->
object->addQTIMaterial($a_xml_writer, $feedback_onenotcorrect);
164 $a_xml_writer->xmlEndTag(
"flow_mat");
165 $a_xml_writer->xmlEndTag(
"itemfeedback");
174 public function toXML($a_include_header =
true, $a_include_binary =
true, $a_shuffle =
false, $test_output =
false, $force_image_references =
false): string
192 $a_xml_writer->
xmlElement(
"fieldlabel", null, $fieldLabel);
193 $a_xml_writer->
xmlElement(
"fieldentry", null, $fieldValue);
194 $a_xml_writer->
xmlEndTag(
"qtimetadatafield");
209 'additional_cont_edit_mode',
210 $this->
object->getAdditionalContentEditingMode()
224 $this->
object->getLifecycle()->getIdentifier()
230 $this->
object->getLifecycle()->getMappedLomLifecycle()
238 $question_id = (
int) $this->
object->getId();
241 foreach ($list as $hint) {
243 'index' => $hint->getIndex(),
244 'points' => $hint->getPoints()
246 $data = $hint->getText();
__construct($a_object)
assQuestionExport constructor
static getListByQuestionId($questionId)
instantiates a question hint list for the passed question id
exportFeedbackOnly($a_xml_writer)
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...
addAnswerSpecificFeedback(ilXmlWriter $a_xml_writer, $answers)
addGeneralMetadata(ilXmlWriter $xmlwriter)
addQtiMetaDataField(ilXmlWriter $a_xml_writer, $fieldLabel, $fieldValue)
adds a qti meta data field with given name and value to the passed xml writer (xml writer must be in ...
xmlEndTag(string $tag)
Writes an endtag.
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)
addGenericFeedback(ilXmlWriter $a_xml_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...
xmlStartTag(string $tag, ?array $attrs=null, bool $empty=false, bool $encode=true, bool $escape=true)
Writes a starttag.
xmlElement(string $tag, $attrs=null, $data=null, $encode=true, $escape=true)
Writes a basic element (no children, just textual content)