83 private readonly
ilObject $content_object,
85 private readonly
string $importdir
88 $lng = $DIC->language();
89 $tree = $DIC->repositoryTree();
95 $this->current_element = [];
96 $this->structure_objects = [];
97 $this->st_into_tree = [];
98 $this->pg_into_tree = [];
99 $this->pages_to_parse = [];
100 $this->mobs_with_int_links = [];
101 $this->mob_mapping = [];
102 $this->file_item_mapping = [];
103 $this->pg_mapping = [];
104 $this->link_targets = [];
107 $this->inside_code =
false;
108 $this->qst_mapping = [];
109 $this->content_type = $this->content_object->getType();
110 $this->metadata_parsing_disabled =
false;
112 if ($this->content_type !==
'tst' && $this->content_type !==
'qpl') {
113 $this->lm_tree =
new ilLMTree($this->content_object->getId());
133 $this->log->debug(
'start');
135 parent::startParsing();
148 foreach ($this->st_into_tree as $st) {
149 $this->lm_tree->insertNode($st[
'id'], $st[
'parent']);
150 if (is_array($this->pg_into_tree[$st[
'id']])) {
151 foreach ($this->pg_into_tree[$st[
'id']] as $pg) {
153 switch ($pg[
'type']) {
155 if ($this->pg_mapping[$pg[
'id']] ==
'') {
156 $ilLog->
write(
'LM Import: No PageObject for PageAlias ' .
157 $pg[
'id'] .
' found! (Please update export installation to ILIAS 3.3.0)');
162 $pg_id = $this->pg_mapping[$pg[
'id']];
169 if (!$this->lm_tree->isInTree($pg_id)) {
170 $this->lm_tree->insertNode($pg_id, $st[
'id']);
183 foreach ($this->pages_to_parse as $page_id) {
184 $page_arr = explode(
':', $page_id);
186 switch ($page_arr[0]) {
188 switch ($this->content_object->getType()) {
190 $page_obj =
new ilLMPage($page_arr[1]);
194 die(
'Unknown content type ' . $this->content_object->getType());
207 $page_obj->buildDom();
208 $page_obj->resolveIntLinks();
209 $page_obj->resolveIIMMediaAliases($this->mob_mapping);
210 if ($this->content_type ==
'lm') {
211 $page_obj->resolveQuestionReferences($this->qst_mapping);
213 $page_obj->update(
false);
215 if ($page_arr[0] ==
'term') {
217 $term->updateShortText();
223 foreach ($this->mobs_with_int_links as $mob_id) {
228 foreach ($this->link_targets as $link_target) {
230 if (!isset($parsed)) {
235 $parsed[
'target_type'],
236 $parsed[
'target_id'],
237 $parsed[
'target_inst']
239 foreach ($sources as $key => $source) {
240 if (in_array($key, $done)) {
243 $type_arr = explode(
':', $source[
'type']);
246 if ($type_arr[1] ==
'pg') {
257 if ($type_arr[0] ===
'qst') {
270 foreach ($this->file_item_mapping as $origin_id => $file_id) {
271 if (empty($origin_id)) {
274 $obj_dir = $origin_id;
275 $source_dir = $this->importdir . DIRECTORY_SEPARATOR .
'objects' . DIRECTORY_SEPARATOR . $obj_dir;
277 $file_obj =
new ilObjFile($file_id,
false);
278 if (is_dir($source_dir)) {
279 $files = scandir($source_dir, SCANDIR_SORT_DESCENDING);
280 if ($files !==
false && $files !== [] && is_file($source_dir .
'/' . $files[0])) {
281 $file = fopen($source_dir .
'/' . $files[0],
'rb');
282 $file_stream = Streams::ofResource($file);
283 $file_obj->appendStream($file_stream, $files[0]);
296 $this->qst_mapping = $a_map;
301 if (!isset($this->status[
'$a_name'])) {
302 $this->cnt[$a_name] = 1;
304 $this->cnt[$a_name]++;
306 $this->current_element[count($this->current_element)] = $a_name;
311 $this->cnt[$a_name]--;
312 unset($this->current_element[count($this->current_element) - 1]);
317 return ($this->current_element[count($this->current_element) - 1] ??
'');
322 if (isset($this->cnt[$a_name])) {
323 return $this->cnt[$a_name];
335 if ($type ==
'end') {
341 if (is_array($attr)) {
342 foreach ($attr as $k => $v) {
343 $tag .=
' ' . $k .
"='$v'";
352 public function handlerBeginTag($a_xml_parser,
string $a_name, array $a_attribs):
void 355 case 'ContentObject':
356 $this->current_object = $this->content_object;
357 if ($a_attribs[
'Type'] ==
'Glossary') {
358 $this->glossary_object = $this->content_object;
362 case 'StructureObject':
364 $lm = $this->content_object;
365 $this->structure_objects[count($this->structure_objects)]
367 $this->current_object = $this->structure_objects[count($this->structure_objects) - 1];
368 $this->current_object->setLMId($this->content_object->getId());
372 $this->current_object->create(
true);
376 $this->in_page_object =
true;
378 if ($this->content_type !==
'tst' && $this->content_type !==
'qpl') {
380 $lm = $this->content_object;
382 $this->page_object =
new ilLMPage();
383 $this->lm_page_object->setLMId($this->content_object->getId());
384 $this->lm_page_object->assignPageObject($this->page_object);
395 case 'InteractiveImage':
396 if ($a_name ==
'MediaObject') {
397 $this->in_media_object =
true;
399 $this->media_meta_start =
true;
400 $this->media_meta_cache = [];
402 $this->media_object->create(
true,
false);
406 $this->media_object->setAlias(
true);
407 $this->media_object->setImportId($a_attribs[
'OriginId']);
408 $this->mob_mapping[$this->media_object->getImportId()] = $this->media_object->getId();
409 if (is_object($this->page_object)) {
410 $this->page_object->needsImportParsing(
true);
415 case 'MediaAliasItem':
416 $this->in_media_item =
true;
418 $this->media_item->setPurpose($a_attribs[
'Purpose']);
422 if (is_object($this->media_object) && $this->in_media_object) {
423 $this->media_item->setWidth($a_attribs[
'Width'] ??
'');
424 $this->media_item->setHeight($a_attribs[
'Height'] ??
'');
425 $this->media_item->setHAlign($a_attribs[
'HorizontalAlign'] ??
'');
430 if (is_object($this->media_object) && $this->in_media_object) {
431 $this->media_item->setParameter($a_attribs[
'Name'], $a_attribs[
'Value']);
436 $this->in_map_area =
true;
438 $this->map_area->setShape($a_attribs[
'Shape']);
439 $this->map_area->setCoords($a_attribs[
'Coords']);
440 $this->map_area->setHighlightMode($a_attribs[
'HighlightMode']);
441 $this->map_area->setHighlightClass($a_attribs[
'HighlightClass']);
445 $this->in_glossary =
true;
446 if ($this->content_object->getType() !=
'glo') {
448 $this->glossary_object->setTitle(
'');
449 $this->glossary_object->setDescription(
'');
450 $this->glossary_object->create(
true);
451 $this->glossary_object->createReference();
452 $parent = $this->tree->getParentNodeData($this->content_object->getRefId());
453 $this->glossary_object->putInTree($parent[
'child']);
454 $this->glossary_object->setPermissions($parent[
'child']);
461 $this->glossary_term->setGlossaryId($this->glossary_object->getId());
462 $this->glossary_term->setLanguage($a_attribs[
'Language']);
463 $this->glossary_term->setImportId($a_attribs[
'Id']);
465 if (isset($parsed)) {
466 $this->link_targets[$a_attribs[
"Id"]] = $a_attribs[
'Id'];
471 $this->in_glossary_definition =
true;
473 $this->page_object->setParentId($this->glossary_term->getGlossaryId());
474 $this->glossary_term->assignPageObject($this->page_object);
478 $this->page_object->setXMLContent(
'');
482 $this->in_file_item =
true;
484 $this->file_item->setTitle(
'dummy');
485 $this->file_item->setMode(
'filelist');
486 if (is_object($this->page_object)) {
487 $this->page_object->needsImportParsing(
true);
492 if ($a_attribs[
'Characteristic'] ==
'Code') {
493 $this->inside_code =
true;
498 $this->in_properties =
true;
502 if ($this->content_object->getType() ==
'lm') {
503 switch ($a_attribs[
'Name']) {
505 $this->content_object->setLayout($a_attribs[
'Value']);
509 $this->content_object->setPageHeader($a_attribs[
'Value']);
513 $this->content_object->setTOCMode($a_attribs[
'Value']);
517 $this->content_object->setActiveLMMenu(
522 case 'ActiveNumbering':
523 $this->content_object->setActiveNumbering(
529 $this->content_object->setActiveTOC(
534 case 'ActivePrintView':
535 $this->content_object->setActivePrintView(
541 $this->content_object->setCleanFrames(
547 $this->content_object->setPublicNotes(
552 case 'HistoryUserComments':
553 $this->content_object->setHistoryUserComments(
559 $this->content_object->setRating(
565 $this->content_object->setRatingPages(
571 if ($a_attribs[
'Value'] !=
'') {
572 if ($this->pg_mapping[$a_attribs[
'Value']] > 0) {
573 $this->content_object->setHeaderPage(
574 $this->pg_mapping[$a_attribs[
'Value']]
581 if ($a_attribs[
'Value'] !=
'') {
582 if ($this->pg_mapping[$a_attribs[
'Value']] > 0) {
583 $this->content_object->setFooterPage(
584 $this->pg_mapping[$a_attribs[
'Value']]
590 case 'LayoutPerPage':
591 $this->content_object->setLayoutPerPage($a_attribs[
'Value']);
594 case 'ProgressIcons':
595 $this->content_object->setProgressIcons($a_attribs[
'Value']);
599 $this->content_object->setStoreTries($a_attribs[
'Value']);
602 case 'RestrictForwardNavigation':
603 $this->content_object->setRestrictForwardNavigation($a_attribs[
'Value']);
606 case 'DisableDefaultFeedback':
607 $this->content_object->setDisableDefaultFeedback($a_attribs[
'Value']);
617 $this->in_meta_data =
true;
621 if (!$this->in_media_object) {
622 if ($this->content_type !=
'tst' && $this->content_type !=
'qpl') {
624 if ($this->current_object->getType() ==
'st' 625 || $this->current_object->getType() ==
'pg') {
627 if ($this->current_object->getType() ==
'pg') {
628 $this->lm_page_object->create(
true);
630 $this->md =
new ilMD(
631 $this->content_object->getId(),
632 $this->current_object->getId(),
633 $this->current_object->getType()
637 elseif ($this->current_object->getType() ==
'term') {
638 $this->md =
new ilMD(
639 $this->glossary_object->getId(),
640 $this->current_object->getId(),
641 $this->current_object->getType()
647 $this->md =
new ilMD(
648 $this->current_object->getId(),
650 $this->current_object->getType()
656 $this->md =
new ilMD(
657 $this->content_object->getId(),
659 $this->current_object->getType()
661 if ($this->md->getGeneral() !=
false) {
662 $this->metadata_parsing_disabled =
true;
675 if ($import_id_parsed[
'type'] ==
'st') {
676 $this->mapping->addMapping(
677 'components/ILIAS/LearningModule',
679 $import_id_parsed[
'id'],
680 $this->current_object->getId()
688 if (!$this->in_meta_meta_data) {
689 if ($this->in_meta_data && !$this->in_glossary_definition) {
690 if (!$this->in_media_object) {
691 $this->current_object->setImportId($a_attribs[
'Entry']);
696 if (isset($parsed)) {
697 $this->link_targets[$a_attribs[
'Entry']] = $a_attribs[
'Entry'];
700 if ($this->in_file_item) {
701 if (!isset($this->file_item_mapping[$a_attribs[
'Entry']])
702 || $this->file_item_mapping[$a_attribs[
'Entry']] ===
'') {
703 $this->file_item->create();
704 $this->file_item->setImportId($a_attribs[
'Entry']);
705 $this->file_item_mapping[$a_attribs[
'Entry']] = $this->file_item->getId();
708 if ($this->in_meta_data && $this->in_media_object) {
709 $mob_id = $this->mob_mapping[$a_attribs[
'Entry']];
718 $this->media_object->create(
true,
false);
719 $this->mob_mapping[$a_attribs[
'Entry']]
720 = $this->media_object->getId();
722 $this->media_object->setImportId($a_attribs[
'Entry']);
723 $this->md =
new ilMD(
725 $this->media_object->getId(),
733 case 'Meta-Metadata':
734 $this->in_meta_meta_data =
true;
739 if (is_object($this->page_object)) {
740 $this->page_object->setContainsIntLink(
true);
742 if ($this->in_map_area) {
744 $this->map_area->setTarget($a_attribs[
'Target']);
745 $this->map_area->setType($a_attribs[
'Type']);
746 $this->map_area->setTargetFrame($a_attribs[
'TargetFrame']);
747 if (is_object($this->media_object)) {
748 $this->media_object->setContainsIntLink(
true);
755 if ($this->in_map_area) {
757 $this->map_area->setHref($a_attribs[
'Href']);
758 $this->map_area->setExtTitle($a_attribs[
'Title']);
764 $this->cur_qid = $a_attribs[
'QRef'];
765 $this->page_object->setContainsQuestion(
true);
769 $this->loc_type = $a_attribs[
'Type'];
775 if (($this->in_page_object || $this->in_glossary_definition)
776 && !$this->in_meta_data && !$this->in_media_object) {
777 if ($a_name ==
'Definition') {
778 $app_name =
'PageObject';
782 $app_attribs = $a_attribs;
786 if ($this->in_file_item && $app_name ==
'Identifier') {
787 $app_attribs[
'Entry'] =
'il__file_' . $this->file_item_mapping[$a_attribs[
'Entry']];
790 $this->page_object->appendXMLContent($this->
buildTag(
'start', $app_name, $app_attribs));
800 if ($this->in_media_object && $this->media_meta_start) {
801 $this->media_meta_cache[] =
802 [
'type' =>
'handlerBeginTag',
'par1' => $a_name,
'par2' => $a_attribs];
804 if ($a_name ==
'Identifier') {
805 if (!$this->in_media_object) {
806 $a_attribs[
'Entry'] =
'il__' . $this->current_object->getType() .
807 '_' . $this->current_object->getId();
809 $a_attribs[
'Entry'] =
'il__mob' .
810 '_' . $this->media_object->getId();
812 $a_attribs[
'Catalog'] =
'ILIAS';
815 parent::handlerBeginTag($a_xml_parser, $a_name, $a_attribs);
824 if ($this->content_object->getType() ==
'glo' &&
825 $this->in_glossary && !$this->in_media_object
841 if ($this->in_media_object && $this->media_meta_start) {
842 $this->media_meta_cache[] =
843 [
'type' =>
'handlerEndTag',
'par1' => $a_name];
845 parent::handlerEndTag($a_xml_parser, $a_name);
850 if (($this->in_page_object || $this->in_glossary_definition)
851 && !$this->in_meta_data && !$this->in_media_object) {
852 $app_name = ($a_name ==
'Definition')
855 $this->page_object->appendXMLContent($this->
buildTag(
'end', $app_name));
859 case 'StructureObject':
860 unset($this->structure_objects[count($this->structure_objects) - 1]);
864 $this->in_page_object =
false;
865 if ($this->content_type !=
'tst' && $this->content_type !=
'qpl') {
867 $this->page_object->updateFromXML();
868 $this->pg_mapping[$this->lm_page_object->getImportId()]
869 = $this->lm_page_object->getId();
873 if ($import_id_parsed[
'type'] ==
'pg') {
874 $this->mapping->addMapping(
875 'components/ILIAS/LearningModule',
877 $import_id_parsed[
'id'],
878 $this->lm_page_object->getId()
884 if ($this->page_object->containsIntLink()) {
885 $this->pages_to_parse[
'lm:' . $this->page_object->getId()] =
'lm:' . $this->page_object->getId();
889 if ($this->page_object->needsImportParsing()) {
890 $this->pages_to_parse[
'lm:' . $this->page_object->getId()] =
'lm:' . $this->page_object->getId();
894 if ($this->page_object->getContainsQuestion()) {
895 $this->pages_to_parse[
'lm:' . $this->page_object->getId()] =
'lm:' . $this->page_object->getId();
899 $xml = $this->page_object->getXMLContent();
900 if ($this->cur_qid !=
'') {
901 $ids = $this->qst_mapping[
$this->cur_qid] ?? [
'pool' => 0,
'test' => 0];
902 if ($ids[
'pool'] > 0) {
905 $xmlcontent = str_replace(
907 'il__qst_' . $ids[
'pool'],
910 $page->setXMLContent($xmlcontent);
911 $page->updateFromXML();
912 if ($this->page_object->needsImportParsing()) {
913 $this->pages_to_parse[
'qpl:' . $page->getId()] =
'qpl:' . $page->getId();
917 if ($ids[
'test'] > 0) {
920 $xmlcontent = str_replace(
922 'il__qst_' . $ids[
'test'],
925 $page->setXMLContent($xmlcontent);
926 $page->updateFromXML();
927 if ($this->page_object->needsImportParsing()) {
928 $this->pages_to_parse[
'qpl:' . $page->getId()] =
'qpl:' . $page->getId();
936 $cnt = count($this->structure_objects);
938 $parent_id = $this->structure_objects[$cnt - 1]->getId();
939 $this->pg_into_tree[$parent_id][] = [
'type' =>
'pg',
'id' => $this->lm_page_object->getId()];
942 unset($this->page_object);
943 unset($this->lm_page_object);
944 unset($this->container[count($this->container) - 1]);
948 case 'InteractiveImage':
949 if ($a_name ==
'MediaObject') {
950 $this->in_media_object =
false;
953 if (empty($this->mob_mapping[$this->media_object->getImportId()])) {
957 $this->media_object->create(
true,
false);
960 if ($this->media_object->containsIntLink()) {
961 $this->mobs_with_int_links[] = $this->media_object->getId();
964 $this->mob_mapping[$this->media_object->getImportId()]
965 = $this->media_object->getId();
968 $this->media_object->setId($this->mob_mapping[$this->media_object->getImportId()]);
975 if (!$this->media_object->isAlias()) {
977 $this->media_object->update();
980 if ($this->media_object->containsIntLink()) {
981 $this->mobs_with_int_links[] = $this->media_object->getId();
987 if ($this->in_page_object || $this->in_glossary_definition) {
988 if ($a_name !=
'InteractiveImage') {
989 $this->page_object->appendXMLContent($this->media_object->getXML(
IL_MODE_ALIAS));
995 case 'MediaAliasItem':
996 $this->in_media_item =
false;
997 $this->media_object->addMediaItem($this->media_item);
1000 $this->in_media_item =
false;
1001 $import_dir = $this->importdir . DIRECTORY_SEPARATOR .
'objects' . DIRECTORY_SEPARATOR . $this->media_object->getImportId();
1002 if (!file_exists($import_dir)
1003 || !is_dir($import_dir)) {
1004 $this->media_object->addMediaItem($this->media_item);
1008 $dir_handle = opendir($import_dir);
1009 while (($file = readdir($dir_handle)) !==
false) {
1010 if ($file !== $this->media_item->getLocation()) {
1014 $this->media_object->addMediaItemFromLocalFile(
1015 $this->media_item->getPurpose(),
1016 $import_dir . DIRECTORY_SEPARATOR . $file,
1021 closedir($dir_handle);
1025 $this->in_map_area =
false;
1026 $this->media_item->addMapArea($this->map_area);
1030 $this->in_properties =
false;
1031 if ($this->content_object->getType() ==
'lm') {
1032 $this->content_object->update();
1037 $this->in_meta_data =
false;
1038 if (strtolower(get_class($this->current_object)) ==
'illmpageobject' && !$this->in_media_object) {
1040 if (is_object($this->lm_page_object)) {
1042 $this->current_object->MDUpdateListener(
'General');
1044 $this->current_object->getId(),
1045 $this->current_object->getImportId()
1048 } elseif ((strtolower(get_class($this->current_object)) ==
'ilobjquestionpool' ||
1049 strtolower(get_class($this->current_object)) ==
'ilobjtest') &&
1050 !$this->in_media_object) {
1054 if ($this->metadata_parsing_disabled) {
1057 if ($this->in_page_object && !is_null($this->page_object)) {
1065 $this->current_object->MDUpdateListener(
'General');
1067 $this->current_object->getId(),
1068 $this->current_object->getImportId()
1072 } elseif (strtolower(get_class($this->current_object)) ==
'ilstructureobject') {
1074 $cnt = count($this->structure_objects);
1076 $parent_id = $this->structure_objects[$cnt - 2]->getId();
1078 $parent_id = $this->lm_tree->getRootId();
1081 $this->st_into_tree[] = [
'id' => $this->current_object->getId(),
1082 'parent' => $parent_id];
1085 $this->current_object->MDUpdateListener(
'General');
1087 $this->current_object->getId(),
1088 $this->current_object->getImportId()
1090 } elseif (strtolower(get_class($this->current_object)) ==
'ilobjlearningmodule' ||
1091 strtolower(get_class($this->current_object)) ==
'ilobjcontentobject' ||
1092 (strtolower(get_class($this->current_object)) ==
'ilobjglossary' && $this->in_glossary)) {
1095 } elseif (strtolower(get_class($this->current_object)) ==
'ilglossaryterm' && !$this->in_media_object) {
1098 $this->page_object->setId($this->glossary_term->getId());
1099 $this->page_object->updateFromXML();
1106 if (strtolower(get_class($this->current_object)) ==
'ilobjlearningmodule' ||
1107 strtolower(get_class($this->current_object)) ==
'ilobjglossary') {
1108 if (strtolower(get_class($this->current_object)) ==
'ilobjglossary' &&
1109 $this->content_object->getType() !=
'glo') {
1110 $this->current_object->setTitle($this->content_object->getTitle() .
' - ' .
1111 $this->
lng->txt(
'glossary'));
1114 $this->current_object->MDUpdateListener(
'General');
1117 if ($this->in_media_object) {
1118 $this->media_object->MDUpdateListener(
'General');
1123 case 'Meta-Metadata':
1124 $this->in_meta_meta_data =
false;
1128 $this->in_file_item =
false;
1130 if ($this->file_item->getImportId()) {
1131 $this->file_item->update();
1137 unset($this->container[count($this->container) - 1]);
1141 $this->in_glossary =
false;
1144 case 'GlossaryTerm':
1145 $term = trim($this->chr_data);
1146 $term = str_replace(
'<',
'<', $term);
1147 $term = str_replace(
'>',
'>', $term);
1148 $this->glossary_term->setTerm($term);
1149 $this->glossary_term->create();
1150 $iia = explode(
'_', $this->glossary_term->getImportId());
1151 $this->glossary_term_map[(
int) $iia[count($iia) - 1]] = $this->glossary_term->getId();
1155 $this->inside_code =
false;
1159 $this->in_glossary_definition =
false;
1160 $this->page_object->updateFromXML();
1161 $this->page_object->buildDom();
1162 $this->glossary_term->setShortText($this->page_object->getFirstParagraphText());
1163 $this->glossary_term->update();
1164 if ($this->page_object->containsIntLink()) {
1165 $this->pages_to_parse[
'term:' . $this->page_object->getId()] =
'term:' . $this->page_object->getId();
1167 if ($this->page_object->needsImportParsing()) {
1168 $this->pages_to_parse[
'term:' . $this->page_object->getId()] =
'term:' . $this->page_object->getId();
1173 if ($this->in_media_item) {
1174 $this->media_item->setFormat(trim($this->chr_data));
1179 if ($this->in_meta_data && !$this->in_media_object) {
1180 $this->current_object->setTitle(trim($this->chr_data));
1182 if ($this->in_media_object) {
1183 $this->media_object->setTitle(trim($this->chr_data));
1192 if ($this->in_media_object) {
1193 $this->media_item->setCaption(trim($this->chr_data));
1197 case 'TextRepresentation':
1198 if ($this->in_media_object) {
1199 $this->media_item->setTextRepresentation(trim($this->chr_data));
1206 if ($this->in_media_item) {
1207 $this->media_item->setLocationType($this->loc_type);
1208 if ($this->loc_type ==
'Reference') {
1209 $this->media_item->setLocation(str_replace(
'&',
'&', trim($this->chr_data)));
1211 $this->media_item->setLocation(trim($this->chr_data));
1214 if ($this->in_file_item) {
1216 $this->file_item->setFileName(trim($this->chr_data));
1220 if ($this->file_item->getType() ==
'file' &&
1221 is_int(strpos($this->chr_data,
'&')) &&
1222 is_int(strpos($this->chr_data,
';'))) {
1223 $source_dir = $this->importdir . DIRECTORY_SEPARATOR .
'objects' . DIRECTORY_SEPARATOR .
1224 $this->file_item->getImportId();
1227 if ($dir = opendir($source_dir)) {
1228 while (
false !== ($file = readdir($dir))) {
1229 if ($file !=
'.' && $file !=
'..') {
1230 $this->file_item->setFileName($file);
1238 $this->file_item->setTitle(trim($this->chr_data));
1243 $this->chr_data =
'';
1249 if ($this->in_meta_data && $this->
processMeta()) {
1253 if ($this->in_media_object && $this->media_meta_start) {
1254 $this->media_meta_cache[] =
1255 [
'type' =>
'handlerCharacterData',
'par1' => $a_data];
1257 parent::handlerCharacterData($a_xml_parser, $a_data);
1265 $a_data = str_replace(
'<',
'<', $a_data);
1266 $a_data = str_replace(
'>',
'>', $a_data);
1270 $a_data = preg_replace(
'/\n/',
'', $a_data);
1271 if (!$this->inside_code) {
1272 $a_data = preg_replace(
'/\t+/',
'', $a_data);
1275 $this->chr_data .= $a_data;
1277 if (!empty($a_data) || $a_data ===
'0') {
1280 if (($this->in_page_object || $this->in_glossary_definition)
1281 && !$this->in_meta_data && !$this->in_media_object) {
1282 $this->page_object->appendXMLContent($a_data);
1288 if ($this->in_map_area) {
1289 $this->map_area->appendTitle($a_data);
1301 foreach ($this->media_meta_cache as $cache_entry) {
1302 switch ($cache_entry[
'type']) {
1303 case 'handlerBeginTag':
1304 parent::handlerBeginTag(
1306 $cache_entry[
'par1'],
1307 $cache_entry[
'par2']
1311 case 'handlerEndTag':
1312 parent::handlerEndTag(
1314 $cache_entry[
'par1']
1318 case 'handlerCharacterData':
1319 parent::handlerCharacterData(
1321 $cache_entry[
'par1']
1327 $this->media_meta_start =
false;
1328 $this->media_meta_cache[] = [];
1346 $link_arr = explode(
'_', $identifier);
1348 if (count($link_arr) !== 4
1349 || $link_arr[0] !==
'il' 1350 || !is_numeric($link_arr[1])
1351 || !is_numeric($link_arr[3])
1357 'target_inst' => (
int) $link_arr[1],
1358 'target_type' => (
string) $link_arr[2],
1359 'target_id' => (
int) $link_arr[3]
processPagesToParse()
parse pages that contain files, mobs and/or internal links
enableMDParsing(bool $a_status)
getOpenCount(string $a_name)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
buildDom(bool $a_force=false)
static getLogger(string $a_component_id)
Get component logger.
static _getSourcesOfTarget(string $a_target_type, int $a_target_id, int $a_target_inst)
get all sources of a link target
buildTag(string $type, string $name, array $attr=[])
handlerEndTag($a_xml_parser, string $a_name)
write(string $message, $level=ilLogLevel::INFO, array $context=[])
write log message
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...
handlerBeginTag($a_xml_parser, string $a_name, array $a_attribs)
update(bool $a_validate=true, bool $a_no_history=false)
update complete page content in db (dom xml content is used)
ilGlossaryTerm $glossary_term
endElement(string $a_name)
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...
bool $metadata_parsing_disabled
ilPageObject $page_object
bool $in_glossary_definition
parseLinkTarget(string $identifier)
Parse a string the get the elements of a link target Return null if the string is not a link target...
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static instantiateQuestion(int $question_id)
setQuestionMapping(array $a_map)
set question import ident to pool/test question id mapping
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
handlerCharacterData($a_xml_parser, string $a_data)
static _exists(string $a_parent_type, int $a_id, string $a_lang="", bool $a_no_cache=false)
Checks whether page exists.
Class ilPageObject Handles PageObjects of ILIAS Learning Modules (see ILIAS DTD)
Legacy Content Object Parser.
resolveIntLinks(?array $a_link_map=null)
Resolves all internal link targets of the page, if targets are available (after import) ...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static parseImportId(string $a_import_id)
Parse an ilias import id Typically of type il_[IL_INST_ID]_[OBJ_TYPE]_[OBJ_ID] returns array( 'orig' ...
static _writeImportId(int $a_id, string $a_import_id)
ilObjLearningModule $learning_module
copyFileItems()
copy files of file items
emptyMediaMetaCache($a_xml_parser)
array $mobs_with_int_links
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(Container $dic, ilPlugin $plugin)
ilLMPageObject $lm_page_object
static yn2tf(string $a_yn)
setImportMapping(?ilImportMapping $mapping=null)
ilObjGlossary $glossary_object
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(private readonly ilObject $content_object, string $xml_file, private readonly string $importdir)
static getInstance(string $a_parent_type, int $a_id=0, int $a_old_nr=0, string $a_lang="-")
Get page object instance.
beginElement(string $a_name)
ilObjMediaObject $media_object
storeTree()
insert StructureObjects and PageObjects into tree