19 declare(strict_types=1);
186 private array
$metadata = [
"label" =>
"",
"entry" =>
""];
195 private readonly
string $importdir,
197 int $a_mode = self::IL_MO_PARSE_QTI,
199 array $import_idents = [],
200 private array $mappings = []
204 $this->user_id = $DIC[
'ilUser']->getId();
206 $this->parser_mode = $a_mode;
210 $this->qpl_id = $a_qpl_id;
211 $this->
lng = $DIC->language();
212 if ($import_idents !== []) {
242 $this->tst_id = $this->tst_object->
getId();
265 $this->question_counter = 1;
266 parent::startParsing();
274 if ($this->depth[$a_xml_parser] > 0) {
275 return $this->path[$this->depth[$a_xml_parser] - 1];
285 public function handlerBeginTag($a_xml_parser,
string $a_name, array $a_attribs): void
287 switch ($this->parser_mode) {
288 case self::IL_MO_PARSE_QTI:
291 case self::IL_MO_VERIFY_QTI:
303 if ($this->do_nothing) {
306 $this->sametag =
false;
307 $this->characterbuffer =
"";
308 $this->depth[$a_xml_parser] = ($this->depth[$a_xml_parser] ?? 0) + 1;
309 $this->path[$this->depth[$a_xml_parser]] = strtolower($a_name);
310 $this->qti_element = $a_name;
312 switch (strtolower($a_name)) {
316 case "assessmentcontrol":
321 $this->in_objectives =
true;
323 case 'presentation_material':
325 $this->in_prensentation_material =
true;
331 $this->in_itemmetadata =
true;
333 case "qtimetadatafield":
334 $this->metadata = [
"label" =>
"",
"entry" =>
""];
345 case "displayfeedback":
355 if ($this->conditionvar !=
null) {
356 $this->conditionvar->addNot();
360 if ($this->conditionvar !=
null) {
361 $this->conditionvar->addAnd();
365 if ($this->conditionvar !=
null) {
366 $this->conditionvar->addOr();
374 foreach ($a_attribs as $attribute => $value) {
375 switch (strtolower($attribute)) {
377 $this->responsevar->setRespident($value);
380 $this->responsevar->setIndex($value);
387 foreach ($a_attribs as $attribute => $value) {
388 switch (strtolower($attribute)) {
390 $this->responsevar->setRespident($value);
393 $this->responsevar->setIndex($value);
400 foreach ($a_attribs as $attribute => $value) {
401 switch (strtolower($attribute)) {
403 $this->responsevar->setRespident($value);
406 $this->responsevar->setIndex($value);
413 foreach ($a_attribs as $attribute => $value) {
414 switch (strtolower($attribute)) {
416 $this->responsevar->setRespident($value);
419 $this->responsevar->setIndex($value);
426 foreach ($a_attribs as $attribute => $value) {
427 switch (strtolower($attribute)) {
429 $this->responsevar->setRespident($value);
432 $this->responsevar->setSetmatch($value);
435 $this->responsevar->setIndex($value);
442 foreach ($a_attribs as $attribute => $value) {
443 switch (strtolower($attribute)) {
445 $this->responsevar->setRespident($value);
448 $this->responsevar->setAreatype($value);
451 $this->responsevar->setIndex($value);
458 foreach ($a_attribs as $attribute => $value) {
459 switch (strtolower($attribute)) {
461 $this->responsevar->setCase($value);
464 $this->responsevar->setRespident($value);
467 $this->responsevar->setIndex($value);
472 case "respcondition":
474 foreach ($a_attribs as $attribute => $value) {
475 switch (strtolower($attribute)) {
477 $this->respcondition->setContinue($value);
480 $this->respcondition->setTitle($value);
503 case "questestinterop":
504 $this->hasRootElement =
true;
512 $this->in_presentation =
true;
515 case "response_label":
518 case "render_choice":
521 case "render_hotspot":
545 case "resprocessing":
549 $this->solutionhint[
'points'] = (float) $a_attribs[
'points'];
559 switch ($this->parser_mode) {
560 case self::IL_MO_PARSE_QTI:
563 case self::IL_MO_VERIFY_QTI:
575 if ($this->do_nothing && strtolower($a_name) !==
"item") {
578 switch (strtolower($a_name)) {
580 if (is_object($this->tst_object)) {
581 $this->tst_object->fromXML($this->
assessment, $this->mappings);
583 $this->in_assessment =
false;
585 case "assessmentcontrol":
586 $this->
assessment->addAssessmentcontrol($this->assessmentcontrol);
587 $this->assessmentcontrol =
null;
590 if (strtolower($this->
getParent($a_xml_parser)) ===
"assessment") {
591 $this->
assessment->addObjectives($this->objectives);
593 $this->in_objectives =
false;
595 case 'presentation_material':
596 $this->
assessment->setPresentationMaterial($this->prensentation_material);
597 $this->in_prensentation_material =
false;
600 $this->in_itemmetadata =
false;
602 case "qtimetadatafield":
604 switch ($this->metadata[
"label"]) {
605 case "ILIAS_VERSION":
606 if ($this->item !==
null) {
607 $this->item->setIliasSourceVersion(
613 if ($this->item !==
null) {
614 $this->item->setQuestiontype($this->metadata[
"entry"]);
618 if ($this->item !==
null) {
619 $this->item->setAuthor($this->metadata[
"entry"]);
623 if ($this->item !==
null) {
624 $this->item->addMetadata($this->metadata);
628 if ($this->in_assessment) {
629 $this->
assessment->addQtiMetadata($this->metadata);
631 $this->metadata = [
"label" =>
"",
"entry" =>
""];
637 if (count($this->flow_mat)) {
638 $flow_mat = array_pop($this->flow_mat);
639 if (count($this->flow_mat)) {
640 $this->flow_mat[count($this->flow_mat) - 1]->addFlowMat($flow_mat);
641 } elseif ($this->in_prensentation_material) {
642 $this->prensentation_material->addFlowMat($flow_mat);
643 } elseif ($this->itemfeedback !=
null) {
644 $this->itemfeedback->addFlowMat($flow_mat);
645 } elseif ($this->response_label !=
null) {
646 $this->response_label->addFlow_mat($flow_mat);
651 if ($this->item !=
null) {
652 if ($this->itemfeedback !=
null) {
653 $this->item->addItemfeedback($this->itemfeedback);
656 $this->itemfeedback =
null;
658 case "displayfeedback":
659 if ($this->respcondition !=
null) {
660 if ($this->displayfeedback !=
null) {
661 $this->respcondition->addDisplayfeedback($this->displayfeedback);
664 $this->displayfeedback =
null;
667 if ($this->respcondition !==
null) {
668 if ($this->setvar !=
null) {
669 $this->respcondition->addSetvar($this->setvar);
672 $this->setvar =
null;
675 if ($this->respcondition !==
null) {
676 $this->respcondition->setConditionvar($this->conditionvar);
678 $this->conditionvar =
null;
688 if ($this->conditionvar !=
null) {
689 if ($this->responsevar !=
null) {
690 $this->conditionvar->addResponseVar($this->responsevar);
693 $this->responsevar =
null;
695 case "respcondition":
696 if ($this->resprocessing !=
null) {
697 $this->resprocessing->addRespcondition($this->respcondition);
699 $this->respcondition =
null;
702 if ($this->resprocessing !=
null) {
703 $this->resprocessing->setOutcomes($this->outcomes);
705 $this->outcomes =
null;
708 if ($this->outcomes !=
null) {
709 $this->outcomes->addDecvar($this->decvar);
711 $this->decvar =
null;
714 $this->in_presentation =
false;
715 if ($this->presentation !=
null && $this->item !=
null) {
716 $this->item->setPresentation($this->presentation);
718 $this->presentation =
null;
720 case "response_label":
721 if ($this->render_type !=
null) {
722 $this->render_type->addResponseLabel($this->response_label);
723 $this->response_label =
null;
726 case "render_choice":
727 case "render_hotspot":
729 if ($this->in_response) {
730 if ($this->response !=
null) {
731 if ($this->render_type !=
null) {
732 $this->response->setRenderType($this->render_type);
733 $this->render_type =
null;
744 if ($this->presentation !=
null) {
745 if ($this->response !=
null) {
746 $this->presentation->addResponse($this->response);
747 if ($this->item !=
null) {
748 $this->item->addPresentationitem($this->response);
752 $this->response =
null;
753 $this->in_response =
false;
756 if ($this->do_nothing) {
757 $this->do_nothing =
false;
766 $qt = $this->item->determineQuestionType();
767 $presentation = $this->item->getPresentation();
773 $question =
new $qt();
774 $fbt = str_replace(
'ass',
'ilAss', $qt) .
'Feedback';
775 $question->feedbackOBJ =
new $fbt(
781 $this->import_mapping = $question->fromXML(
788 $this->question_counter,
789 $this->import_mapping,
793 $this->solutionhints = [];
795 $this->numImportedItems++;
799 if ($this->material) {
800 $mat = $this->material->getMaterial(0);
801 if (!is_array($mat)) {
802 $this->material =
null;
805 if ($mat[
"type"] ===
"mattext" && $mat[
"material"]->
getLabel() ===
"suggested_solution") {
806 $this->item->addSuggestedSolution($mat[
"material"], $this->gap_index);
808 if ($this->in_objectives) {
809 $this->objectives->addMaterial($this->material);
810 } elseif ($this->render_type !=
null && strtolower($this->
getParent($a_xml_parser)) ===
"render_hotspot") {
811 $this->render_type->addMaterial($this->material);
812 } elseif (count($this->flow_mat) && strtolower($this->
getParent($a_xml_parser)) ===
"flow_mat") {
813 $this->flow_mat[count($this->flow_mat) - 1]->addMaterial($this->material);
814 } elseif ($this->itemfeedback !=
null) {
815 $this->itemfeedback->addMaterial($this->material);
816 } elseif ($this->response_label !=
null) {
817 $this->response_label->addMaterial($this->material);
818 } elseif ($this->response !=
null) {
819 if ($this->response->hasRendering()) {
820 $this->response->setMaterial2($this->material);
822 $this->response->setMaterial1($this->material);
824 } elseif (($this->in_presentation) && (!$this->in_response)) {
825 if (!is_object($this->item->getQuestiontext())) {
826 $this->item->setQuestiontext($this->material);
828 $this->presentation->addMaterial($this->material);
829 } elseif ($this->presentation !=
null) {
830 $this->presentation->addMaterial($this->material);
831 if ($this->item !=
null) {
832 $this->item->addPresentationitem($this->material);
836 $this->material =
null;
844 if ($this->
virusDetected($this->matimage->getRawContent())) {
849 $matImageSecurity->sanitizeLabel();
853 if (!$matImageSecurity->validate()) {
857 $this->material->addMatimage($this->matimage);
858 $this->matimage =
null;
864 $this->mattext->setContent(
'<br />');
865 $this->material->addMattext($this->mattext);
866 $this->mattext =
null;
868 case "resprocessing":
869 if ($this->item !=
null) {
870 $this->item->addResprocessing($this->resprocessing);
872 $this->resprocessing =
null;
875 if ($this->material !=
null) {
876 $this->material->addMattext($this->mattext);
878 $this->mattext =
null;
881 if ($this->material !=
null) {
882 $this->material->addMatapplet($this->matapplet);
884 $this->matapplet =
null;
892 $this->depth[$a_xml_parser] -= 1;
900 switch ($this->parser_mode) {
901 case self::IL_MO_PARSE_QTI:
904 case self::IL_MO_VERIFY_QTI:
915 if ($this->do_nothing) {
918 $this->characterbuffer .= $a_data;
920 switch ($this->qti_element) {
922 $this->metadata[
"label"] = $a_data;
925 $this->metadata[
"entry"] = $a_data;
927 case "response_label":
928 if ($this->response_label !=
null) {
929 $this->response_label->setContent($a_data);
933 if ($this->setvar !=
null) {
934 $this->setvar->setContent($a_data);
937 case "displayfeedback":
938 if ($this->displayfeedback !=
null) {
939 $this->displayfeedback->setContent($a_data);
950 if ($this->responsevar !=
null) {
951 $this->responsevar->setContent($a_data);
955 if (strlen($a_data)) {
956 if ($this->decvar !=
null) {
957 $this->decvar->setContent($a_data);
962 if ($this->mattext !=
null) {
963 $this->mattext->setContent($a_data);
967 if ($this->matapplet !=
null) {
968 $this->matapplet->setContent($a_data);
972 if ($this->matimage !=
null) {
973 $this->matimage->setContent($a_data);
977 switch ($this->
getParent($a_xml_parser)) {
985 $this->item->setDuration($a_data);
990 switch ($this->
getParent($a_xml_parser)) {
992 $this->item->setComment($a_data);
1002 $this->sametag =
true;
1011 $this->qti_element = $a_name;
1013 switch (strtolower($a_name)) {
1016 $this->in_assessment =
true;
1017 foreach ($a_attribs as $attribute => $value) {
1018 switch (strtolower($attribute)) {
1028 case "questestinterop":
1029 $this->verifyroot =
true;
1031 case "qtimetadatafield":
1032 $this->metadata = [
"label" =>
"",
"entry" =>
""];
1033 $this->verifymetadatafield = 1;
1036 $this->verifyfieldlabeltext =
"";
1037 if ($this->verifymetadatafield == 1) {
1038 $this->verifyfieldlabel = 1;
1042 $this->verifyfieldentrytext =
"";
1043 if ($this->verifymetadatafield == 1) {
1044 $this->verifyfieldentry = 1;
1049 foreach ($a_attribs as $attribute => $value) {
1050 switch (strtolower($attribute)) {
1056 $this->founditems[] = [
"title" =>
"$title",
"type" =>
"",
"ident" => $a_attribs[
"ident"]];
1058 case "response_lid":
1059 if ($this->founditems[count($this->founditems) - 1][
'type'] ===
'') {
1061 foreach ($a_attribs as $attribute => $value) {
1062 switch (strtolower($attribute)) {
1063 case "rcardinality":
1064 switch (strtolower($value)) {
1082 $this->solutionhint =
array_map(
'intval', $a_attribs);
1083 $this->solutionhint[
'txt'] =
'';
1085 case "response_str":
1086 if (strlen($this->founditems[count($this->founditems) - 1][
"type"]) == 0) {
1088 foreach ($a_attribs as $attribute => $value) {
1089 switch (strtolower($attribute)) {
1090 case "rcardinality":
1091 switch (strtolower($value)) {
1105 if (strlen($this->founditems[count($this->founditems) - 1][
"type"]) == 0) {
1109 case "response_num":
1110 if (strlen($this->founditems[count($this->founditems) - 1][
"type"]) == 0) {
1114 case "response_grp":
1115 if (strlen($this->founditems[count($this->founditems) - 1][
"type"]) == 0) {
1121 $this->verifyqticomment = 1;
1123 case "presentation":
1124 foreach ($a_attribs as $attribute => $value) {
1125 switch (strtolower($attribute)) {
1127 $this->founditems[count($this->founditems) - 1][
"title"] = $value;
1140 switch (strtolower($a_name)) {
1142 foreach ($this->
assessment->qtimetadata as $metaField) {
1143 if ($metaField[
'label'] ==
'question_set_type') {
1148 if ($metaField[
'label'] ==
'random_test') {
1149 if ($metaField[
'entry'] == 1) {
1157 $this->in_assessment =
false;
1161 $this->verifyqticomment = 0;
1163 case "qtimetadatafield":
1164 $this->verifymetadatafield = 0;
1165 if ($this->verifyfieldlabeltext ===
"QUESTIONTYPE") {
1168 if ($this->in_assessment) {
1169 $this->
assessment->addQtiMetadata($this->metadata);
1171 $this->metadata = [
"label" =>
"",
"entry" =>
""];
1174 $this->verifyfieldlabel = 0;
1177 $this->verifyfieldentry = 0;
1187 if ($this->verifyqticomment == 1) {
1188 if (preg_match(
"/Questiontype\=(.*)/", $a_data, $matches)) {
1189 if (count($this->founditems)) {
1190 $this->founditems[count($this->founditems) - 1][
"type"] = $matches[1];
1193 } elseif ($this->verifyfieldlabel == 1) {
1194 $this->verifyfieldlabeltext = $a_data;
1195 } elseif ($this->verifyfieldentry == 1) {
1196 $this->verifyfieldentrytext = $a_data;
1199 switch ($this->qti_element) {
1201 $this->metadata[
"label"] = $a_data;
1204 $this->metadata[
"entry"] = $a_data;
1231 $questionIdMapping = [];
1234 $oldQuestionId = substr($k, strpos($k,
'qst_') + strlen(
'qst_'));
1235 $newQuestionId = $v[
'test'];
1237 $questionIdMapping[$oldQuestionId] = $newQuestionId;
1240 return $questionIdMapping;
1247 parent::setXMLContent($a_xml_content);
1255 $xmlContent = file_get_contents($this->xml_file);
1257 file_put_contents($this->xml_file, $xmlContent);
1259 return parent::openXMLFile();
1266 if (preg_match(
'/^(\d+\.\d+\.\d+)$/', $versionDateString, $matches)) {
1277 if (preg_match(
'/^il_(\d+?)_qst_\d+$/', $itemIdent, $matches)) {
1294 for ($i = 0x00, $max = 0x08; $i <= $max; $i += 0x01) {
1295 $needles[] =
"&#{$i};";
1297 for ($i = 0x0b, $max = 0x0c; $i <= $max; $i += 0x01) {
1298 $needles[] =
"&#{$i};";
1300 for ($i = 0x0e, $max = 0x1f; $i <= $max; $i += 0x01) {
1301 $needles[] =
"&#{$i};";
1303 for ($i = 0xd800, $max = 0xdfff; $i <= $max; $i += 0x0001) {
1304 $needles[] =
"&#{$i};";
1306 for ($i = 0xfffe, $max = 0xffff; $i <= $max; $i += 0x0001) {
1307 $needles[] =
"&#{$i};";
1309 $reg =
'/(' . implode(
'|', $needles) .
')/';
1310 $xmlContent = preg_replace($reg,
'', $xmlContent);
1322 if (!$this->material) {
1326 if (!$this->matimage) {
1341 return $vs->scanBuffer($buffer);
1347 $this->in_assessment =
true;
1348 foreach ($a_attribs as $attribute => $value) {
1349 switch (strtolower($attribute)) {
1363 foreach ($a_attribs as $attribute => $value) {
1364 switch (strtolower($attribute)) {
1365 case "solutionswitch":
1366 $this->assessmentcontrol->setSolutionswitch($value);
1369 $this->assessmentcontrol->setHintswitch($value);
1371 case "feedbackswitch":
1372 $this->assessmentcontrol->setFeedbackswitch($value);
1381 foreach ($a_attribs as $attribute => $value) {
1382 switch (strtolower($attribute)) {
1384 $this->itemfeedback->setIdent($value);
1387 $this->itemfeedback->setView($value);
1396 foreach ($a_attribs as $attribute => $value) {
1397 switch (strtolower($attribute)) {
1398 case "feedbacktype":
1399 $this->displayfeedback->setFeedbacktype($value);
1402 $this->displayfeedback->setLinkrefid($value);
1411 foreach ($a_attribs as $attribute => $value) {
1412 switch (strtolower($attribute)) {
1414 $this->setvar->setAction($value);
1417 $this->setvar->setVarname($value);
1426 foreach ($a_attribs as $attribute => $value) {
1427 switch (strtolower($attribute)) {
1429 $this->responsevar->setCase($value);
1432 $this->responsevar->setRespident($value);
1435 $this->responsevar->setIndex($value);
1444 switch (strtolower($a_name)) {
1445 case "response_lid":
1451 case "response_str":
1454 case "response_num":
1457 case "response_grp":
1461 $this->in_response =
true;
1463 $this->response->setFlow($this->flow);
1464 foreach ($a_attribs as $attribute => $value) {
1465 switch (strtolower($attribute)) {
1467 $this->response->setIdent($value);
1470 $this->response->setRTiming($value);
1472 case "rcardinality":
1473 $this->response->setRCardinality($value);
1476 $this->response->setNumtype($value);
1484 $this->gap_index = 0;
1485 $this->item = $this->items[] =
new ilQTIItem();
1486 foreach ($a_attribs as $attribute => $value) {
1487 switch (strtolower($attribute)) {
1489 $this->item->setIdent($value);
1490 $this->item->setIliasSourceNic(
1494 $this->do_nothing =
true;
1495 } elseif ($this->import_idents !== []
1496 && !in_array($value, $this->import_idents)) {
1497 $this->do_nothing =
true;
1501 $this->item->setTitle($value);
1504 $this->item->setMaxattempts($value);
1513 foreach ($a_attribs as $attribute => $value) {
1514 switch (strtolower($attribute)) {
1516 $this->resprocessing->setScoremodel($value);
1524 if (!$this->in_response) {
1528 foreach ($a_attribs as $attribute => $value) {
1529 switch (strtolower($attribute)) {
1531 $this->render_type->setEncoding($value);
1534 $this->render_type->setFibtype($value);
1537 $this->render_type->setRows($value);
1540 $this->render_type->setMaxchars($value);
1543 $this->render_type->setPrompt($value);
1546 $this->render_type->setColumns($value);
1549 $this->render_type->setCharset($value);
1552 $this->render_type->setMaxnumber($value);
1555 $this->render_type->setMinnumber($value);
1563 if (!$this->in_response) {
1567 foreach ($a_attribs as $attribute => $value) {
1568 switch (strtolower($attribute)) {
1570 $this->render_type->setShowdraw($value);
1573 $this->render_type->setMinnumber($value);
1576 $this->render_type->setMaxnumber($value);
1584 if (!$this->in_response) {
1588 foreach ($a_attribs as $attribute => $value) {
1589 switch (strtolower($attribute)) {
1591 $this->render_type->setShuffle($value);
1594 $this->render_type->setMinnumber($value);
1597 $this->render_type->setMaxnumber($value);
1605 if ($this->render_type ==
null) {
1609 foreach ($a_attribs as $attribute => $value) {
1610 switch (strtolower($attribute)) {
1612 $this->response_label->setRshuffle($value);
1615 $this->response_label->setRarea($value);
1618 $this->response_label->setRrange($value);
1621 $this->response_label->setLabelrefid($value);
1624 $this->response_label->setIdent($value);
1627 $this->response_label->setMatchGroup($value);
1630 $this->response_label->setMatchMax($value);
1639 foreach ($a_attribs as $attribute => $value) {
1640 switch (strtolower($attribute)) {
1642 $this->matapplet->setLabel($value);
1645 $this->matapplet->setUri($value);
1648 $this->matapplet->setY0($value);
1651 $this->matapplet->setHeight($value);
1654 $this->matapplet->setWidth($value);
1657 $this->matapplet->setX0($value);
1660 $this->matapplet->setEmbedded($value);
1663 $this->matapplet->setEntityref($value);
1672 foreach ($a_attribs as $attribute => $value) {
1673 switch (strtolower($attribute)) {
1675 $this->mattext->setTexttype($value);
1678 $this->mattext->setLabel($value);
1681 $this->mattext->setCharset($value);
1684 $this->mattext->setUri($value);
1687 $this->mattext->setXmlspace($value);
1690 $this->mattext->setXmllang($value);
1693 $this->mattext->setEntityref($value);
1696 $this->mattext->setHeight($value);
1699 $this->mattext->setWidth($value);
1702 $this->mattext->setX0($value);
1705 $this->mattext->setY0($value);
1714 $this->material->setFlow($this->flow);
1715 foreach ($a_attribs as $attribute => $value) {
1716 switch (strtolower($attribute)) {
1718 $this->material->setLabel($value);
1727 foreach ($a_attribs as $attribute => $value) {
1728 switch (strtolower($attribute)) {
1730 $this->matimage->setImagetype($value);
1733 $this->matimage->setLabel($value);
1736 $this->matimage->setHeight($value);
1739 $this->matimage->setWidth($value);
1742 $this->matimage->setUri($value);
1745 $this->matimage->setEmbedded($value);
1748 $this->matimage->setX0($value);
1751 $this->matimage->setY0($value);
1754 $this->matimage->setEntityref($value);
1758 if (!$this->matimage->getEmbedded() && strlen($this->matimage->getUri())) {
1759 $img_string = @file_get_contents(dirname($this->xml_file) .
'/' . $this->matimage->getUri());
1761 if (is_string($img_string)) {
1762 $this->matimage->setContent($img_string);
1770 foreach ($a_attribs as $attribute => $value) {
1771 switch (strtolower($attribute)) {
1773 $this->decvar->setVarname($value);
1776 $this->decvar->setVartype($value);
1779 $this->decvar->setDefaultval($value);
1782 $this->decvar->setMinvalue($value);
1785 $this->decvar->setMaxvalue($value);
1788 $this->decvar->setMembers($value);
1791 $this->decvar->setCutvalue($value);
1802 $parser = xml_parser_create();
1803 $is_resource = is_resource($parser);
1804 xml_parser_free($parser);
1806 return $is_resource ? [] :
new SplObjectStorage();
setHandlers($a_xml_parser)
set event handler should be overwritten by inherited class private
ilQTIObjectives $objectives
renderHotspotBeginTag(array $a_attribs)
string $verifyfieldlabeltext
Class ilQTIPresentationMaterial.
itemBeginTag(array $a_attribs)
matTextBeginTag(array $a_attribs)
ilQTIRespcondition $respcondition
cleanInvalidXmlChars(string $xmlContent)
ilQTIAssessmentcontrol $assessmentcontrol
handlerVerifyCharacterData($a_xml_parser, string $a_data)
const QUESTION_SET_TYPE_RANDOM
assessmentBeginTag(array $a_attribs)
decVarBeginTag(array $a_attribs)
const RESPONSEVAR_SUBSTRING
ilQTIPresentationMaterial $prensentation_material
itemFeedbackBeginTag(array $a_attribs)
handlerParseBeginTag($a_xml_parser, string $a_name, array $a_attribs)
setXMLContent(string $a_xml_content)
renderChoiceBeginTag(array $a_attribs)
ilQTIResprocessing $resprocessing
resprocessingBeginTag(array $a_attribs)
ilQTIAssessment $assessment
termsAndDefinitionsBeginTag(string $a_name, array $a_attribs)
setVarBeginTag(array $a_attribs)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
matImageBeginTag(array $a_attribs)
displayFeedbackBeginTag(array $a_attribs)
static isImportable($questionTypeTag)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
bool $in_prensentation_material
assessmentControlBeginTag(array $a_attribs)
fetchSourceNicFromItemIdent(string $itemIdent)
ilQTIItemfeedback $itemfeedback
handlerParseEndTag($a_xml_parser, string $a_name)
NotOptimalIfConditionsInspection
setIgnoreItemsEnabled(bool $ignoreItemsEnabled)
handlerBeginTag($a_xml_parser, string $a_name, array $a_attribs)
ilQTIResponseLabel $response_label
responseLabelBeginTag(array $a_attribs)
handlerVerifyEndTag($a_xml_parser, string $a_name)
ilQTIPresentation $presentation
const QT_MULTIPLE_CHOICE_SR
virusDetected(string $buffer)
fetchNumericVersionFromVersionDateString(string $versionDateString)
matAppletBeginTag(array $a_attribs)
setQuestionSetType(string $questionSetType)
handlerVerifyBeginTag($a_xml_parser, string $a_name, array $a_attribs)
setTestObject(ilObjTest $tst_object)
handlerCharacterData($a_xml_parser, string $a_data)
QuestionFiles $questionfiles
const QT_MULTIPLE_CHOICE_MR
ilQTIResponseVar $responsevar
ilQTIConditionvar $conditionvar
string $verifyfieldentrytext
__construct(Container $dic, ilPlugin $plugin)
ilQTIDisplayfeedback $displayfeedback
getImportMapping()
Get array of new created questions for import id.
const QUESTION_SET_TYPE_FIXED
varEqualBeginTag(array $a_attribs)
renderFibBeginTag(array $a_attribs)
handlerEndTag($a_xml_parser, string $a_name)
__construct(?string $path_to_file='', ?bool $throw_exception=false)
ilQTIMatapplet $matapplet
handlerParseCharacterData($a_xml_parser, string $a_data)
materialBeginTag(array $a_attribs)