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()
50 $a_xml_writer->xmlStartTag(
"item", $attrs);
52 $a_xml_writer->xmlElement(
"qticomment", null, $this->
object->getComment());
53 $a_xml_writer->xmlStartTag(
"itemmetadata");
54 $a_xml_writer->xmlStartTag(
"qtimetadata");
55 $a_xml_writer->xmlStartTag(
"qtimetadatafield");
56 $a_xml_writer->xmlElement(
"fieldlabel", null,
"ILIAS_VERSION");
57 $a_xml_writer->xmlElement(
"fieldentry", null, $ilias->getSetting(
"ilias_version"));
58 $a_xml_writer->xmlEndTag(
"qtimetadatafield");
59 $a_xml_writer->xmlStartTag(
"qtimetadatafield");
60 $a_xml_writer->xmlElement(
"fieldlabel", null,
"QUESTIONTYPE");
61 $a_xml_writer->xmlElement(
"fieldentry", null, $this->
object->getQuestionType());
62 $a_xml_writer->xmlEndTag(
"qtimetadatafield");
63 $a_xml_writer->xmlStartTag(
"qtimetadatafield");
64 $a_xml_writer->xmlElement(
"fieldlabel", null,
"AUTHOR");
65 $a_xml_writer->xmlElement(
"fieldentry", null, $this->
object->getAuthor());
66 $a_xml_writer->xmlEndTag(
"qtimetadatafield");
67 $a_xml_writer->xmlStartTag(
"qtimetadatafield");
68 $a_xml_writer->xmlElement(
"fieldlabel", null,
"points");
69 $a_xml_writer->xmlElement(
"fieldentry", null, $this->
object->getPoints());
70 $a_xml_writer->xmlEndTag(
"qtimetadatafield");
71 foreach ($this->
object->getVariables() as $variable) {
73 "precision" => $variable->getPrecision(),
74 "intprecision" => $variable->getIntprecision(),
75 "rangemin" => $variable->getRangeMin(),
76 "rangemax" => $variable->getRangeMax(),
77 "unit" => (is_object($variable->getUnit())) ? $variable->getUnit()->getUnit() :
"",
78 "unitvalue" => (is_object($variable->getUnit())) ? $variable->getUnit()->getId() :
"" 80 $a_xml_writer->xmlStartTag(
"qtimetadatafield");
81 $a_xml_writer->xmlElement(
"fieldlabel", null, $variable->getVariable());
82 $a_xml_writer->xmlElement(
"fieldentry", null, serialize($var));
83 $a_xml_writer->xmlEndTag(
"qtimetadatafield");
85 foreach ($this->
object->getResults() as $result) {
86 $resultunits = $this->
object->getResultUnits($result);
88 foreach ($resultunits as $unit) {
89 array_push($ru, array(
"unit" => $unit->getUnit(),
"unitvalue" => $unit->getId()));
92 "precision" => $result->getPrecision(),
93 "tolerance" => $result->getTolerance(),
94 "rangemin" => $result->getRangeMin(),
95 "rangemax" => $result->getRangeMax(),
96 "points" => $result->getPoints(),
97 "formula" => $result->getFormula(),
98 "rating" => ($result->getRatingSimple()) ?
"" : array(
"sign" => $result->getRatingSign(),
"value" => $result->getRatingValue(),
"unit" => $result->getRatingUnit()),
99 "unit" => (is_object($result->getUnit())) ? $result->getUnit()->getUnit() :
"",
100 "unitvalue" => (is_object($result->getUnit())) ? $result->getUnit()->getId() :
"",
101 "resultunits" => $ru,
102 "resulttype" => $result->getResultType()
104 $a_xml_writer->xmlStartTag(
"qtimetadatafield");
105 $a_xml_writer->xmlElement(
"fieldlabel", null, $result->getResult());
106 $a_xml_writer->xmlElement(
"fieldentry", null, serialize(
$res));
107 $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 $this->
object->addQTIMaterial($a_xml_writer, $this->
object->getQuestion());
127 $a_xml_writer->xmlEndTag(
"flow");
128 $a_xml_writer->xmlEndTag(
"presentation");
134 $a_xml_writer->xmlEndTag(
"item");
135 $a_xml_writer->xmlEndTag(
"questestinterop");
137 $xml = $a_xml_writer->xmlDumpMem(
false);
138 if (!$a_include_header) {
139 $pos = strpos(
$xml,
"?>");
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)
addGenericFeedback(ilXmlWriter $a_xml_writer)