90 string $a_import_dir =
"" 94 $this->log = $DIC[
"ilLog"];
95 $lng = $DIC->language();
96 $tree = $DIC->repositoryTree();
100 $this->import_dir = ($a_import_dir !=
"")
102 : $a_content_object->getImportDirectory();
105 $this->cnt = array();
106 $this->current_element = array();
107 $this->structure_objects = array();
108 $this->content_object = $a_content_object;
109 $this->st_into_tree = array();
110 $this->pg_into_tree = array();
111 $this->pages_to_parse = array();
112 $this->mobs_with_int_links = array();
113 $this->mob_mapping = array();
114 $this->file_item_mapping = array();
115 $this->pg_mapping = array();
116 $this->link_targets = array();
117 $this->subdir = $a_subdir;
120 $this->inside_code =
false;
121 $this->qst_mapping = array();
122 $this->coType = $this->content_object->getType();
123 $this->metadata_parsing_disabled =
false;
125 if (($this->coType !=
"tst") && ($this->coType !=
"qpl")) {
126 $this->lm_tree =
new ilLMTree($this->content_object->getId());
135 xml_set_object($a_xml_parser, $this);
136 xml_set_element_handler($a_xml_parser,
'handlerBeginTag',
'handlerEndTag');
137 xml_set_character_data_handler($a_xml_parser,
'handlerCharacterData');
147 $this->log->debug(
"start");
150 parent::startParsing();
169 foreach ($this->st_into_tree as $st) {
170 $this->lm_tree->insertNode($st[
"id"], $st[
"parent"]);
171 if (is_array($this->pg_into_tree[$st[
"id"]])) {
172 foreach ($this->pg_into_tree[$st[
"id"]] as $pg) {
174 switch ($pg[
"type"]) {
176 if ($this->pg_mapping[$pg[
"id"]] ==
"") {
177 $ilLog->write(
"LM Import: No PageObject for PageAlias " .
178 $pg[
"id"] .
" found! (Please update export installation to ILIAS 3.3.0)");
183 $pg_id = $this->pg_mapping[$pg[
"id"]];
190 if (!$this->lm_tree->isInTree($pg_id)) {
191 $this->lm_tree->insertNode($pg_id, $st[
"id"]);
204 foreach ($this->pages_to_parse as $page_id) {
205 $page_arr = explode(
":", $page_id);
208 switch ($page_arr[0]) {
210 switch ($this->content_object->getType()) {
212 $page_obj =
new ilLMPage($page_arr[1]);
216 die(
"Unknown content type " . $this->content_object->getType());
229 $page_obj->buildDom();
230 $page_obj->resolveIntLinks();
231 $page_obj->resolveIIMMediaAliases($this->mob_mapping);
232 if ($this->coType ==
"lm") {
233 $page_obj->resolveQuestionReferences($this->qst_mapping);
235 $page_obj->update(
false);
237 if ($page_arr[0] ==
"gdf") {
239 $def->updateShortText();
247 foreach ($this->mobs_with_int_links as $mob_id) {
254 foreach ($this->link_targets as $link_target) {
256 $link_arr = explode(
"_", $link_target);
257 $target_inst = $link_arr[1];
262 foreach ($sources as $key =>
$source) {
264 if (in_array($key, $done)) {
267 $type_arr = explode(
":",
$source[
"type"]);
270 if ($type_arr[1] ==
"pg") {
281 if ($type_arr[0] ==
"qst") {
285 if ($type_arr[0] ==
"sqst") {
300 foreach ($this->mob_mapping as $origin_id => $mob_id) {
301 if (empty($origin_id)) {
305 $obj_dir = $origin_id;
306 $source_dir = $imp_dir .
"/" . $this->subdir .
"/objects/" . $obj_dir;
309 if (is_dir($source_dir)) {
312 if (is_dir($target_dir)) {
326 foreach ($this->file_item_mapping as $origin_id => $file_id) {
327 if (empty($origin_id)) {
330 $obj_dir = $origin_id;
331 $source_dir = $imp_dir .
"/" . $this->subdir .
"/objects/" . $obj_dir;
333 $file_obj =
new ilObjFile($file_id,
false);
334 if (is_dir($source_dir)) {
335 $files = scandir($source_dir, SCANDIR_SORT_DESCENDING);
336 if ($files !==
false && $files !== [] && is_file($source_dir .
'/' . $files[0])) {
337 $file = fopen($source_dir .
'/' . $files[0],
'rb');
338 $file_stream = Streams::ofResource($file);
339 $file_obj->appendStream($file_stream, $files[0]);
352 $this->qst_mapping = $a_map;
357 if (!isset($this->status[
"$a_name"])) {
358 $this->cnt[$a_name] = 1;
360 $this->cnt[$a_name]++;
362 $this->current_element[count($this->current_element)] = $a_name;
367 $this->cnt[$a_name]--;
368 unset($this->current_element[count($this->current_element) - 1]);
373 return ($this->current_element[count($this->current_element) - 1] ??
"");
378 if (isset($this->cnt[$a_name])) {
379 return $this->cnt[$a_name];
391 if ($type ==
"end") {
397 if (is_array($attr)) {
398 foreach ($attr as $k => $v) {
399 $tag .=
" " . $k .
"=\"$v\"";
408 public function handlerBeginTag($a_xml_parser, $a_name, $a_attribs) :
void 411 case "ContentObject":
413 if ($a_attribs[
"Type"] ==
"Glossary") {
418 case "StructureObject":
421 $this->structure_objects[count($this->structure_objects)]
423 $this->current_object = $this->structure_objects[count($this->structure_objects) - 1];
424 $this->current_object->setLMId($this->content_object->getId());
428 $this->current_object->create(
true);
432 $this->in_page_object =
true;
434 if (($this->coType !=
"tst") && ($this->coType !=
"qpl")) {
438 $this->page_object =
new ilLMPage();
439 $this->lm_page_object->setLMId($this->content_object->getId());
440 $this->lm_page_object->assignPageObject($this->page_object);
451 case "InteractiveImage":
452 if ($a_name ==
"MediaObject") {
453 $this->in_media_object =
true;
455 $this->media_meta_start =
true;
456 $this->media_meta_cache = array();
461 $this->media_object->setAlias(
true);
462 $this->media_object->setImportId($a_attribs[
"OriginId"]);
463 if (is_object($this->page_object)) {
464 $this->page_object->needsImportParsing(
true);
469 case "MediaAliasItem":
470 $this->in_media_item =
true;
472 $this->media_item->setPurpose($a_attribs[
"Purpose"]);
476 if (is_object($this->media_object) && $this->in_media_object) {
477 $this->media_item->setWidth($a_attribs[
"Width"] ??
'');
478 $this->media_item->setHeight($a_attribs[
"Height"] ??
'');
479 $this->media_item->setHAlign($a_attribs[
"HorizontalAlign"] ??
'');
484 if (is_object($this->media_object) && $this->in_media_object) {
485 $this->media_item->setParameter($a_attribs[
"Name"], $a_attribs[
"Value"]);
490 $this->in_map_area =
true;
492 $this->map_area->setShape($a_attribs[
"Shape"]);
493 $this->map_area->setCoords($a_attribs[
"Coords"]);
494 $this->map_area->setHighlightMode($a_attribs[
"HighlightMode"]);
495 $this->map_area->setHighlightClass($a_attribs[
"HighlightClass"]);
499 $this->in_glossary =
true;
500 if ($this->content_object->getType() !=
"glo") {
502 $this->glossary_object->setTitle(
"");
503 $this->glossary_object->setDescription(
"");
504 $this->glossary_object->create(
true);
505 $this->glossary_object->createReference();
506 $parent = $this->tree->getParentNodeData($this->content_object->getRefId());
507 $this->glossary_object->putInTree($parent[
"child"]);
508 $this->glossary_object->setPermissions($parent[
"child"]);
515 $this->glossary_term->setGlossaryId($this->glossary_object->getId());
516 $this->glossary_term->setLanguage($a_attribs[
"Language"]);
517 $this->glossary_term->setImportId($a_attribs[
"Id"]);
518 $this->link_targets[$a_attribs[
"Id"]] = $a_attribs[
"Id"];
522 $this->in_glossary_definition =
true;
525 $this->page_object->setParentId($this->glossary_term->getGlossaryId());
526 $this->glossary_definition->setTermId($this->glossary_term->getId());
527 $this->glossary_definition->assignPageObject($this->page_object);
529 $this->glossary_definition->create(
true);
532 $this->page_object->setXMLContent(
"");
536 $this->in_file_item =
true;
538 $this->file_item->setTitle(
"dummy");
539 $this->file_item->setMode(
"filelist");
540 if (is_object($this->page_object)) {
541 $this->page_object->needsImportParsing(
true);
546 if ($a_attribs[
"Characteristic"] ==
"Code") {
547 $this->inside_code =
true;
552 $this->in_properties =
true;
556 if ($this->content_object->getType() ==
"lm") {
557 switch ($a_attribs[
"Name"]) {
559 $this->content_object->setLayout($a_attribs[
"Value"]);
563 $this->content_object->setPageHeader($a_attribs[
"Value"]);
567 $this->content_object->setTOCMode($a_attribs[
"Value"]);
571 $this->content_object->setActiveLMMenu(
576 case "ActiveNumbering":
577 $this->content_object->setActiveNumbering(
583 $this->content_object->setActiveTOC(
588 case "ActivePrintView":
589 $this->content_object->setActivePrintView(
595 $this->content_object->setCleanFrames(
601 $this->content_object->setPublicNotes(
606 case "HistoryUserComments":
607 $this->content_object->setHistoryUserComments(
613 $this->content_object->setRating(
619 $this->content_object->setRatingPages(
625 if ($a_attribs[
"Value"] !=
"") {
626 if ($this->pg_mapping[$a_attribs[
"Value"]] > 0) {
627 $this->content_object->setHeaderPage(
628 $this->pg_mapping[$a_attribs[
"Value"]]
635 if ($a_attribs[
"Value"] !=
"") {
636 if ($this->pg_mapping[$a_attribs[
"Value"]] > 0) {
637 $this->content_object->setFooterPage(
638 $this->pg_mapping[$a_attribs[
"Value"]]
644 case "LayoutPerPage":
645 $this->content_object->setLayoutPerPage($a_attribs[
"Value"]);
648 case "ProgressIcons":
649 $this->content_object->setProgressIcons($a_attribs[
"Value"]);
653 $this->content_object->setStoreTries($a_attribs[
"Value"]);
656 case "RestrictForwardNavigation":
657 $this->content_object->setRestrictForwardNavigation($a_attribs[
"Value"]);
660 case "DisableDefaultFeedback":
661 $this->content_object->setDisableDefaultFeedback($a_attribs[
"Value"]);
672 $this->in_meta_data =
true;
676 if (!$this->in_media_object) {
677 if (($this->coType !=
"tst") && ($this->coType !=
"qpl")) {
679 if ($this->current_object->getType() ==
"st" ||
680 $this->current_object->getType() ==
"pg") {
682 if ($this->current_object->getType() ==
"pg") {
683 $this->lm_page_object->create(
true);
685 $this->md =
new ilMD(
686 $this->content_object->getId(),
687 $this->current_object->getId(),
688 $this->current_object->getType()
692 elseif ($this->current_object->getType() ==
"gdf") {
693 $this->md =
new ilMD(
694 $this->glossary_object->getId(),
695 $this->current_object->getId(),
696 $this->current_object->getType()
702 $this->md =
new ilMD(
703 $this->current_object->getId(),
705 $this->current_object->getType()
711 $this->md =
new ilMD(
712 $this->content_object->getId(),
714 $this->current_object->getType()
716 if ($this->md->getGeneral() !=
false) {
717 $this->metadata_parsing_disabled =
true;
731 if ($import_id_parsed[
'type'] ==
'st') {
732 $this->mapping->addMapping(
733 'Modules/LearningModule',
735 $import_id_parsed[
'id'],
736 $this->current_object->getId()
744 if (!$this->in_meta_meta_data) {
745 if ($this->in_meta_data && !$this->in_glossary_definition) {
746 if (!$this->in_media_object) {
747 $this->current_object->setImportId($a_attribs[
"Entry"]);
749 $this->link_targets[$a_attribs[
"Entry"]] = $a_attribs[
"Entry"];
751 if ($this->in_file_item) {
752 if (!isset($this->file_item_mapping[$a_attribs[
"Entry"]])
753 || $this->file_item_mapping[$a_attribs[
"Entry"]] ===
"") {
754 $this->file_item->create();
755 $this->file_item->setImportId($a_attribs[
"Entry"]);
756 $this->file_item_mapping[$a_attribs[
"Entry"]] = $this->file_item->getId();
759 if ($this->in_meta_data && $this->in_media_object) {
762 $mob_id = $this->mob_mapping[$a_attribs[
"Entry"]];
771 $this->media_object->create(
true,
false);
772 $this->mob_mapping[$a_attribs[
"Entry"]]
773 = $this->media_object->getId();
775 $this->media_object->setImportId($a_attribs[
"Entry"]);
776 $this->md =
new ilMD(
778 $this->media_object->getId(),
786 case "Meta-Metadata":
787 $this->in_meta_meta_data =
true;
792 if (is_object($this->page_object)) {
793 $this->page_object->setContainsIntLink(
true);
795 if ($this->in_map_area) {
798 $this->map_area->setTarget($a_attribs[
"Target"]);
799 $this->map_area->setType($a_attribs[
"Type"]);
800 $this->map_area->setTargetFrame($a_attribs[
"TargetFrame"]);
801 if (is_object($this->media_object)) {
803 $this->media_object->setContainsIntLink(
true);
810 if ($this->in_map_area) {
812 $this->map_area->setHref($a_attribs[
"Href"]);
813 $this->map_area->setExtTitle($a_attribs[
"Title"]);
819 $this->cur_qid = $a_attribs[
"QRef"];
820 $this->page_object->setContainsQuestion(
true);
824 $this->loc_type = $a_attribs[
"Type"];
831 if (($this->in_page_object || $this->in_glossary_definition)
832 && !$this->in_meta_data && !$this->in_media_object) {
833 if ($a_name ==
"Definition") {
834 $app_name =
"PageObject";
835 $app_attribs = array();
838 $app_attribs = $a_attribs;
842 if ($this->in_file_item && $app_name ==
"Identifier") {
843 $app_attribs[
"Entry"] =
"il__file_" . $this->file_item_mapping[$a_attribs[
"Entry"]];
847 $this->page_object->appendXMLContent($this->
buildTag(
"start", $app_name, $app_attribs));
858 if ($this->in_media_object && $this->media_meta_start) {
859 $this->media_meta_cache[] =
860 array(
"type" =>
"handlerBeginTag",
"par1" => $a_name,
"par2" => $a_attribs);
862 if ($a_name ==
"Identifier") {
863 if (!$this->in_media_object) {
864 $a_attribs[
"Entry"] =
"il__" . $this->current_object->getType() .
865 "_" . $this->current_object->getId();
867 $a_attribs[
"Entry"] =
"il__mob" .
868 "_" . $this->media_object->getId();
870 $a_attribs[
"Catalog"] =
"ILIAS";
873 parent::handlerBeginTag($a_xml_parser, $a_name, $a_attribs);
882 if ($this->content_object->getType() ==
"glo" &&
883 $this->in_glossary && !$this->in_media_object
899 if ($this->in_media_object && $this->media_meta_start) {
900 $this->media_meta_cache[] =
901 array(
"type" =>
"handlerEndTag",
"par1" => $a_name);
903 parent::handlerEndTag($a_xml_parser, $a_name);
908 if (($this->in_page_object || $this->in_glossary_definition)
909 && !$this->in_meta_data && !$this->in_media_object) {
910 $app_name = ($a_name ==
"Definition")
913 $this->page_object->appendXMLContent($this->
buildTag(
"end", $app_name));
917 case "StructureObject":
918 unset($this->structure_objects[count($this->structure_objects) - 1]);
923 $this->in_page_object =
false;
924 if (($this->coType !=
"tst") && ($this->coType !=
"qpl")) {
926 $this->page_object->updateFromXML();
927 $this->pg_mapping[$this->lm_page_object->getImportId()]
928 = $this->lm_page_object->getId();
932 if ($import_id_parsed[
'type'] ==
'pg') {
933 $this->mapping->addMapping(
934 'Modules/LearningModule',
936 $import_id_parsed[
'id'],
937 $this->lm_page_object->getId()
943 if ($this->page_object->containsIntLink()) {
944 $this->pages_to_parse[
"lm:" . $this->page_object->getId()] =
"lm:" . $this->page_object->getId();
948 if ($this->page_object->needsImportParsing()) {
949 $this->pages_to_parse[
"lm:" . $this->page_object->getId()] =
"lm:" . $this->page_object->getId();
953 if ($this->page_object->getContainsQuestion()) {
954 $this->pages_to_parse[
"lm:" . $this->page_object->getId()] =
"lm:" . $this->page_object->getId();
958 $xml = $this->page_object->getXMLContent();
959 if ($this->cur_qid !=
"") {
960 $ids = $this->qst_mapping[
$this->cur_qid] ?? [
'pool' => 0,
'test' => 0];
961 if ($ids[
"pool"] > 0) {
964 $xmlcontent = str_replace(
966 "il__qst_" . $ids[
"pool"],
969 $page->setXMLContent($xmlcontent);
970 $page->updateFromXML();
971 if ($this->page_object->needsImportParsing()) {
972 $this->pages_to_parse[
"qpl:" . $page->getId()] =
"qpl:" . $page->getId();
976 if ($ids[
"test"] > 0) {
979 $xmlcontent = str_replace(
981 "il__qst_" . $ids[
"test"],
984 $page->setXMLContent($xmlcontent);
985 $page->updateFromXML();
986 if ($this->page_object->needsImportParsing()) {
987 $this->pages_to_parse[
"qpl:" . $page->getId()] =
"qpl:" . $page->getId();
995 $cnt = count($this->structure_objects);
997 $parent_id = $this->structure_objects[
$cnt - 1]->getId();
1001 $this->pg_into_tree[$parent_id][] = array(
"type" =>
"pg",
"id" => $this->lm_page_object->getId());
1005 unset($this->page_object);
1006 unset($this->lm_page_object);
1007 unset($this->container[count($this->container) - 1]);
1011 case "InteractiveImage":
1012 if ($a_name ==
"MediaObject") {
1013 $this->in_media_object =
false;
1016 if (empty($this->mob_mapping[$this->media_object->getImportId()])) {
1020 $this->media_object->create(
true,
false);
1023 if ($this->media_object->containsIntLink()) {
1025 $this->mobs_with_int_links[] = $this->media_object->getId();
1028 $this->mob_mapping[$this->media_object->getImportId()]
1029 = $this->media_object->getId();
1032 $this->media_object->setId($this->mob_mapping[$this->media_object->getImportId()]);
1039 if (!$this->media_object->isAlias()) {
1041 $this->media_object->update();
1046 if ($this->media_object->containsIntLink()) {
1048 $this->mobs_with_int_links[] = $this->media_object->getId();
1054 if ($this->in_page_object || $this->in_glossary_definition) {
1055 if ($a_name !=
"InteractiveImage") {
1056 $this->page_object->appendXMLContent($this->media_object->getXML(
IL_MODE_ALIAS));
1064 case "MediaAliasItem":
1065 $this->in_media_item =
false;
1066 $this->media_object->addMediaItem($this->media_item);
1070 $this->in_map_area =
false;
1071 $this->media_item->addMapArea($this->map_area);
1075 $this->in_properties =
false;
1076 if ($this->content_object->getType() ==
"lm") {
1077 $this->content_object->update();
1082 $this->in_meta_data =
false;
1083 if (strtolower(get_class($this->current_object)) ==
"illmpageobject" && !$this->in_media_object) {
1085 if (is_object($this->lm_page_object)) {
1087 $this->current_object->MDUpdateListener(
'General');
1089 $this->current_object->getId(),
1090 $this->current_object->getImportId()
1093 } elseif ((strtolower(get_class($this->current_object)) ==
"ilobjquestionpool" ||
1094 strtolower(get_class($this->current_object)) ==
"ilobjtest") &&
1095 !$this->in_media_object) {
1099 if ($this->metadata_parsing_disabled) {
1102 if ($this->in_page_object && !is_null($this->page_object)) {
1110 $this->current_object->MDUpdateListener(
'General');
1112 $this->current_object->getId(),
1113 $this->current_object->getImportId()
1117 } elseif (strtolower(get_class($this->current_object)) ==
"ilstructureobject") {
1119 $cnt = count($this->structure_objects);
1121 $parent_id = $this->structure_objects[
$cnt - 2]->getId();
1123 $parent_id = $this->lm_tree->getRootId();
1126 $this->st_into_tree[] = array(
"id" => $this->current_object->getId(),
1127 "parent" => $parent_id);
1130 $this->current_object->MDUpdateListener(
'General');
1132 $this->current_object->getId(),
1133 $this->current_object->getImportId()
1135 } elseif (strtolower(get_class($this->current_object)) ==
"ilobjlearningmodule" ||
1136 strtolower(get_class($this->current_object)) ==
"ilobjcontentobject" ||
1137 (strtolower(get_class($this->current_object)) ==
"ilobjglossary" && $this->in_glossary)) {
1140 } elseif (strtolower(get_class($this->current_object)) ==
"ilglossarydefinition" && !$this->in_media_object) {
1144 $this->page_object->setId($this->glossary_definition->getId());
1145 $this->page_object->updateFromXML();
1152 if (strtolower(get_class($this->current_object)) ==
"ilobjlearningmodule" ||
1153 strtolower(get_class($this->current_object)) ==
"ilobjglossary") {
1154 if (strtolower(get_class($this->current_object)) ==
"ilobjglossary" &&
1155 $this->content_object->getType() !=
"glo") {
1157 $this->current_object->setTitle($this->content_object->getTitle() .
" - " .
1158 $this->lng->txt(
"glossary"));
1161 $this->current_object->MDUpdateListener(
'General');
1170 if ($this->in_media_object) {
1172 $this->media_object->MDUpdateListener(
'General');
1175 if ($this->in_glossary_definition) {
1176 $this->glossary_definition->MDUpdateListener(
'General');
1181 case "Meta-Metadata":
1182 $this->in_meta_meta_data =
false;
1186 $this->in_file_item =
false;
1188 if ($this->file_item->getImportId()) {
1189 $this->file_item->update();
1195 unset($this->container[count($this->container) - 1]);
1199 $this->in_glossary =
false;
1202 case "GlossaryTerm":
1203 $term = trim($this->chr_data);
1204 $term = str_replace(
"<",
"<", $term);
1205 $term = str_replace(
">",
">", $term);
1206 $this->glossary_term->setTerm($term);
1207 $this->glossary_term->create();
1208 $iia = explode(
"_", $this->glossary_term->getImportId());
1209 $this->glossary_term_map[(int) $iia[count($iia) - 1]] = $this->glossary_term->getId();
1213 $this->inside_code =
false;
1217 $this->in_glossary_definition =
false;
1218 $this->page_object->updateFromXML();
1219 $this->page_object->buildDom();
1220 $this->glossary_definition->setShortText($this->page_object->getFirstParagraphText());
1221 $this->glossary_definition->update();
1222 if ($this->page_object->containsIntLink()) {
1223 $this->pages_to_parse[
"gdf:" . $this->page_object->getId()] =
"gdf:" . $this->page_object->getId();
1225 if ($this->page_object->needsImportParsing()) {
1226 $this->pages_to_parse[
"gdf:" . $this->page_object->getId()] =
"gdf:" . $this->page_object->getId();
1231 if ($this->in_media_item) {
1232 $this->media_item->setFormat(trim($this->chr_data));
1237 if ($this->in_meta_data && !$this->in_media_object) {
1238 $this->current_object->setTitle(trim($this->chr_data));
1240 if ($this->in_media_object) {
1241 $this->media_object->setTitle(trim($this->chr_data));
1250 if ($this->in_media_object) {
1251 $this->media_item->setCaption(trim($this->chr_data));
1255 case "TextRepresentation":
1256 if ($this->in_media_object) {
1257 $this->media_item->setTextRepresentation(trim($this->chr_data));
1264 if ($this->in_media_item) {
1265 $this->media_item->setLocationType($this->loc_type);
1266 if ($this->loc_type ==
"Reference") {
1267 $this->media_item->setLocation(str_replace(
"&",
"&", trim($this->chr_data)));
1269 $this->media_item->setLocation(trim($this->chr_data));
1272 if ($this->in_file_item) {
1274 $this->file_item->setFileName(trim($this->chr_data));
1278 if ($this->file_item->getType() ==
"file" &&
1279 is_int(strpos($this->chr_data,
"&")) &&
1280 is_int(strpos($this->chr_data,
";"))) {
1282 $source_dir = $imp_dir .
"/" . $this->subdir .
"/objects/" .
1283 $this->file_item->getImportId();
1286 if ($dir = opendir($source_dir)) {
1287 while (
false !== ($file = readdir($dir))) {
1288 if ($file !=
"." && $file !=
"..") {
1289 $this->file_item->setFileName($file);
1297 $this->file_item->setTitle(trim($this->chr_data));
1303 $this->chr_data =
"";
1309 if ($this->in_meta_data && $this->
processMeta()) {
1313 if ($this->in_media_object && $this->media_meta_start) {
1314 $this->media_meta_cache[] =
1315 array(
"type" =>
"handlerCharacterData",
"par1" => $a_data);
1317 parent::handlerCharacterData($a_xml_parser, $a_data);
1325 $a_data = str_replace(
"<",
"<", $a_data);
1326 $a_data = str_replace(
">",
">", $a_data);
1330 $a_data = preg_replace(
"/\n/",
"", $a_data);
1331 if (!$this->inside_code) {
1332 $a_data = preg_replace(
"/\t+/",
"", $a_data);
1335 $this->chr_data .= $a_data;
1337 if (!empty($a_data) || $a_data ===
"0") {
1340 if (($this->in_page_object || $this->in_glossary_definition)
1341 && !$this->in_meta_data && !$this->in_media_object) {
1342 $this->page_object->appendXMLContent($a_data);
1349 if ($this->in_map_area) {
1350 $this->map_area->appendTitle($a_data);
1363 foreach ($this->media_meta_cache as $cache_entry) {
1364 switch ($cache_entry[
"type"]) {
1365 case "handlerBeginTag":
1366 parent::handlerBeginTag(
1368 $cache_entry[
"par1"],
1369 $cache_entry[
"par2"]
1373 case "handlerEndTag":
1374 parent::handlerEndTag(
1376 $cache_entry[
"par1"]
1380 case "handlerCharacterData":
1381 parent::handlerCharacterData(
1383 $cache_entry[
"par1"]
1389 $this->media_meta_start =
false;
1390 $this->media_meta_cache[] = array();
static _exists($a_parent_type, $a_id, $a_lang="", $a_no_cache=false)
Checks whether page exists.
$metadata_parsing_disabled
processPagesToParse()
parse pages that contain files, mobs and/or internal links
getOpenCount(string $a_name)
buildTag(string $type, string $name, array $attr=[])
static rCopy($a_sdir, $a_tdir, $preserveTimeAttributes=false)
Copies content of a directory $a_sdir recursively to a directory $a_tdir.
enableMDParsing($a_status)
static _resolveIntLinks($question_id)
static parseImportId($a_import_id)
Parse an ilias import id Typically of type il_[IL_INST_ID]_[OBJ_TYPE]_[OBJ_ID] returns array( 'orig' ...
endElement(string $a_name)
setImportMapping(ilImportMapping $mapping=null)
Base exception class for learning modules.
copyMobFiles()
copy multimedia object files from import zip file to mob directory
setQuestionMapping(array $a_map)
set question import ident to pool/test question id mapping
__construct(ilObject $a_content_object, string $a_xml_file, string $a_subdir, string $a_import_dir="")
handlerCharacterData($a_xml_parser, $a_data)
Legacy Content Object Parser.
static _getSourcesOfTarget($a_target_type, $a_target_id, $a_target_inst)
get all sources of a link target
handlerBeginTag($a_xml_parser, $a_name, $a_attribs)
handler for begin of element
Glossary definition page object.
static _writeImportId($a_id, $a_import_id)
write import id to db (static)
setHandlers($a_xml_parser)
static makeDir($a_dir)
creates a new directory and inherits all filesystem permissions of the parent directory You may pass ...
copyFileItems()
copy files of file items
emptyMediaMetaCache($a_xml_parser)
Class ilGlossaryDefinition.
_resolveIntLinks($question_id)
static getInstance($a_parent_type, $a_id=0, $a_old_nr=0, $a_lang="-")
Get page object instance.
__construct(Container $dic, ilPlugin $plugin)
Exercise XML Parser which completes/updates a given file by an xml string.
static getLogger($a_component_id)
Get component logger.
static yn2tf($a_yn)
convert "y"/"n" to true/false
static getWebspaceDir($mode="filesystem")
get webspace directory
Extension of ilPageObject for learning modules.
beginElement(string $a_name)
storeTree()
insert StructureObjects and PageObjects into tree
handlerEndTag($a_xml_parser, $a_name)