4 include_once
"./Modules/Test/classes/inc.AssessmentConstants.php";
30 $this->
object = $a_object;
38 foreach ($answers as
$index => $answer) {
39 $linkrefid =
"response_$index";
41 "ident" => $linkrefid,
47 $fb = $this->
object->feedbackOBJ->getSpecificAnswerFeedbackExportPresentation(
48 $this->object->getId(),
52 $this->
object->addQTIMaterial($a_xml_writer, $fb);
68 $feedback_allcorrect = $this->
object->feedbackOBJ->getGenericFeedbackExportPresentation(
69 $this->object->getId(),
72 $feedback_onenotcorrect = $this->
object->feedbackOBJ->getGenericFeedbackExportPresentation(
73 $this->object->getId(),
76 if (strlen($feedback_allcorrect . $feedback_onenotcorrect)) {
77 $a_xml_writer->xmlStartTag(
"resprocessing");
78 $a_xml_writer->xmlStartTag(
"outcomes");
79 $a_xml_writer->xmlStartTag(
"decvar");
80 $a_xml_writer->xmlEndTag(
"decvar");
81 $a_xml_writer->xmlEndTag(
"outcomes");
83 if (strlen($feedback_allcorrect)) {
87 $a_xml_writer->xmlStartTag(
"respcondition", $attrs);
89 $a_xml_writer->xmlStartTag(
"conditionvar");
91 "respident" =>
"points" 93 $a_xml_writer->xmlElement(
"varequal", $attrs, $this->object->getPoints());
94 $a_xml_writer->xmlEndTag(
"conditionvar");
97 "feedbacktype" =>
"Response",
98 "linkrefid" =>
"response_allcorrect" 100 $a_xml_writer->xmlElement(
"displayfeedback", $attrs);
101 $a_xml_writer->xmlEndTag(
"respcondition");
104 if (strlen($feedback_onenotcorrect)) {
108 $a_xml_writer->xmlStartTag(
"respcondition", $attrs);
110 $a_xml_writer->xmlStartTag(
"conditionvar");
111 $a_xml_writer->xmlStartTag(
"not");
113 "respident" =>
"points" 115 $a_xml_writer->xmlElement(
"varequal", $attrs, $this->object->getPoints());
116 $a_xml_writer->xmlEndTag(
"not");
117 $a_xml_writer->xmlEndTag(
"conditionvar");
120 "feedbacktype" =>
"Response",
121 "linkrefid" =>
"response_onenotcorrect" 123 $a_xml_writer->xmlElement(
"displayfeedback", $attrs);
124 $a_xml_writer->xmlEndTag(
"respcondition");
126 $a_xml_writer->xmlEndTag(
"resprocessing");
129 if (strlen($feedback_allcorrect)) {
131 "ident" =>
"response_allcorrect",
134 $a_xml_writer->xmlStartTag(
"itemfeedback", $attrs);
136 $a_xml_writer->xmlStartTag(
"flow_mat");
137 $this->
object->addQTIMaterial($a_xml_writer, $feedback_allcorrect);
138 $a_xml_writer->xmlEndTag(
"flow_mat");
139 $a_xml_writer->xmlEndTag(
"itemfeedback");
141 if (strlen($feedback_onenotcorrect)) {
143 "ident" =>
"response_onenotcorrect",
146 $a_xml_writer->xmlStartTag(
"itemfeedback", $attrs);
148 $a_xml_writer->xmlStartTag(
"flow_mat");
149 $this->
object->addQTIMaterial($a_xml_writer, $feedback_onenotcorrect);
150 $a_xml_writer->xmlEndTag(
"flow_mat");
151 $a_xml_writer->xmlEndTag(
"itemfeedback");
164 public function toXML($a_include_header =
true, $a_include_binary =
true, $a_shuffle =
false, $test_output =
false, $force_image_references =
false)
181 $a_xml_writer->
xmlElement(
"fieldlabel", null, $fieldLabel);
182 $a_xml_writer->
xmlElement(
"fieldentry", null, $fieldValue);
183 $a_xml_writer->
xmlEndTag(
"qtimetadatafield");
198 'additional_cont_edit_mode',
199 $this->object->getAdditionalContentEditingMode()
213 $this->object->getLifecycle()->getIdentifier()
219 $this->object->getLifecycle()->getMappedLomLifecycle()
227 $question_id = (int) $this->object->getId();
230 foreach ($list as $hint) {
232 'index' => $hint->getIndex(),
233 'points' => $hint->getPoints()
235 $data = $hint->getText();
__construct($a_object)
assQuestionExport constructor
static getListByQuestionId($questionId)
instantiates a question hint list for the passed question id
xmlStartTag($tag, $attrs=null, $empty=false, $encode=true, $escape=true)
Writes a starttag.
exportFeedbackOnly($a_xml_writer)
Class for question exports.
addAnswerSpecificFeedback(ilXmlWriter $a_xml_writer, $answers)
addGeneralMetadata(ilXmlWriter $xmlwriter)
xmlEndTag($tag)
Writes an endtag.
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 ...
addAdditionalContentEditingModeInformation(ilXmlWriter $a_xml_writer)
adds a qti meta data field for ilias specific information of "additional content editing mode" (xml w...
xmlElement($tag, $attrs=null, $data=null, $encode=true, $escape=true)
Writes a basic element (no children, just textual content)
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.