69 public function __construct(&$a_content_object, $a_xml_file, $a_subdir, $a_import_dir =
"")
73 $this->log = $DIC[
"ilLog"];
74 $lng = $DIC->language();
75 $tree = $DIC->repositoryTree();
79 $this->import_dir = ($a_import_dir !=
"")
81 : $a_content_object->getImportDirectory();
85 $this->current_element = array();
86 $this->structure_objects = array();
87 $this->content_object = $a_content_object;
89 $this->st_into_tree = array();
90 $this->pg_into_tree = array();
91 $this->pages_to_parse = array();
92 $this->mobs_with_int_links = array();
93 $this->mob_mapping = array();
94 $this->file_item_mapping = array();
95 $this->pg_mapping = array();
96 $this->link_targets = array();
97 $this->subdir = $a_subdir;
100 $this->inside_code =
false;
101 $this->qst_mapping = array();
102 $this->coType = $this->content_object->getType();
103 $this->metadata_parsing_disabled =
false;
105 if (($this->coType !=
"tst") and ($this->coType !=
"qpl")) {
106 $this->lm_tree =
new ilTree($this->content_object->getId());
107 $this->lm_tree->setTreeTablePK(
"lm_id");
108 $this->lm_tree->setTableNames(
'lm_tree',
'lm_data');
121 xml_set_object($a_xml_parser, $this);
122 xml_set_element_handler($a_xml_parser,
'handlerBeginTag',
'handlerEndTag');
123 xml_set_character_data_handler($a_xml_parser,
'handlerCharacterData');
132 $this->mapping = $mapping;
141 $this->log->debug(
"start");
144 parent::startParsing();
165 foreach ($this->st_into_tree as $st) {
167 $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) {
173 switch ($pg[
"type"]) {
175 if ($this->pg_mapping[$pg[
"id"]] ==
"") {
176 $ilLog->write(
"LM Import: No PageObject for PageAlias " .
177 $pg[
"id"] .
" found! (Please update export installation to ILIAS 3.3.0)");
182 $pg_id = $this->pg_mapping[$pg[
"id"]];
189 if (!$this->lm_tree->isInTree($pg_id)) {
190 $this->lm_tree->insertNode($pg_id, $st[
"id"]);
214 foreach ($this->pages_to_parse as $page_id) {
215 $page_arr = explode(
":", $page_id);
217 switch ($page_arr[0]) {
219 switch ($this->content_object->getType()) {
221 $page_obj =
new ilLMPage($page_arr[1]);
225 die(
"Unknown content type " . $this->content_object->getType());
238 $page_obj->buildDom();
239 $page_obj->resolveIntLinks();
240 $page_obj->resolveIIMMediaAliases($this->mob_mapping);
241 if (in_array($this->coType, array(
"lm"))) {
242 $page_obj->resolveQuestionReferences($this->qst_mapping);
244 $page_obj->update(
false);
246 if ($page_arr[0] ==
"gdf") {
248 $def->updateShortText();
256 foreach ($this->mobs_with_int_links as $mob_id) {
263 foreach ($this->link_targets as $link_target) {
265 $link_arr = explode(
"_", $link_target);
266 $target_inst = $link_arr[1];
271 foreach ($sources as $key =>
$source) {
273 if (in_array($key, $done)) {
276 $type_arr = explode(
":",
$source[
"type"]);
279 if ($type_arr[1] ==
"pg") {
290 if ($type_arr[0] ==
"qst") {
294 if ($type_arr[0] ==
"sqst") {
308 $imp_dir = $this->import_dir;
309 foreach ($this->mob_mapping as $origin_id => $mob_id) {
310 if (empty($origin_id)) {
325 $obj_dir = $origin_id;
326 $source_dir = $imp_dir .
"/" . $this->subdir .
"/objects/" . $obj_dir;
329 if (@is_dir($source_dir)) {
335 if (@is_dir($target_dir)) {
348 $imp_dir = $this->import_dir;
349 foreach ($this->file_item_mapping as $origin_id => $file_id) {
350 if (empty($origin_id)) {
353 $obj_dir = $origin_id;
354 $source_dir = $imp_dir .
"/" . $this->subdir .
"/objects/" . $obj_dir;
356 $file_obj =
new ilObjFile($file_id,
false);
358 $target_dir = $file_obj->getDirectory($file_obj->getVersion());
359 if (@is_dir($source_dir)) {
365 if (@is_dir($target_dir)) {
378 $this->qst_mapping = $a_map;
387 if (!isset($this->status[
"$a_name"])) {
388 $this->cnt[$a_name] == 1;
390 $this->cnt[$a_name]++;
392 $this->current_element[count($this->current_element)] = $a_name;
402 $this->cnt[$a_name]--;
403 unset($this->current_element[count($this->current_element) - 1]);
411 return ($this->current_element[count($this->current_element) - 1]);
421 if (isset($this->cnt[$a_name])) {
422 return $this->cnt[$a_name];
439 if (
$type ==
"end") {
445 if (is_array($attr)) {
446 foreach ($attr as $k => $v) {
447 $tag .=
" " . $k .
"=\"$v\"";
467 case "ContentObject":
470 if ($a_attribs[
"Type"] ==
"Glossary") {
475 case "StructureObject":
477 $this->structure_objects[count($this->structure_objects)]
479 $this->current_object = $this->structure_objects[count($this->structure_objects) - 1];
480 $this->current_object->setLMId($this->content_object->getId());
484 $this->current_object->create(
true);
488 $this->in_page_object =
true;
490 if (($this->coType !=
"tst") and ($this->coType !=
"qpl")) {
491 $this->lm_page_object =
new ilLMPageObject($this->content_object);
492 $this->page_object =
new ilLMPage();
493 $this->lm_page_object->setLMId($this->content_object->getId());
494 $this->lm_page_object->assignPageObject($this->page_object);
502 if (($this->coType !=
"tst") and ($this->coType !=
"qpl")) {
503 $this->lm_page_object->setAlias(
true);
504 $this->lm_page_object->setOriginID($a_attribs[
"OriginId"]);
509 $this->in_media_object =
true;
511 case "InteractiveImage":
513 $this->media_meta_start =
true;
514 $this->media_meta_cache = array();
520 $this->media_object->setAlias(
true);
521 $this->media_object->setImportId($a_attribs[
"OriginId"]);
522 if (is_object($this->page_object)) {
523 $this->page_object->needsImportParsing(
true);
528 case "MediaAliasItem":
529 $this->in_media_item =
true;
531 $this->media_item->setPurpose($a_attribs[
"Purpose"]);
540 if (is_object($this->media_object) && $this->in_media_object) {
541 $this->media_item->setWidth($a_attribs[
"Width"]);
542 $this->media_item->setHeight($a_attribs[
"Height"]);
543 $this->media_item->setHAlign($a_attribs[
"HorizontalAlign"]);
548 if (is_object($this->media_object) && $this->in_media_object) {
549 $this->media_item->setParameter($a_attribs[
"Name"], $a_attribs[
"Value"]);
554 $this->in_map_area =
true;
556 $this->map_area->setShape($a_attribs[
"Shape"]);
557 $this->map_area->setCoords($a_attribs[
"Coords"]);
558 $this->map_area->setHighlightMode($a_attribs[
"HighlightMode"]);
559 $this->map_area->setHighlightClass($a_attribs[
"HighlightClass"]);
563 $this->in_glossary =
true;
564 if ($this->content_object->getType() !=
"glo") {
566 $this->glossary_object->setTitle(
"");
567 $this->glossary_object->setDescription(
"");
568 $this->glossary_object->create(
true);
569 $this->glossary_object->createReference();
570 $parent = $this->tree->getParentNodeData($this->content_object->getRefId());
571 $this->glossary_object->putInTree($parent[
"child"]);
572 $this->glossary_object->setPermissions($parent[
"child"]);
579 $this->glossary_term->setGlossaryId($this->glossary_object->getId());
580 $this->glossary_term->setLanguage($a_attribs[
"Language"]);
581 $this->glossary_term->setImportId($a_attribs[
"Id"]);
582 $this->link_targets[$a_attribs[
"Id"]] = $a_attribs[
"Id"];
586 $this->in_glossary_definition =
true;
589 $this->page_object->setParentId($this->glossary_term->getGlossaryId());
590 $this->glossary_definition->setTermId($this->glossary_term->getId());
591 $this->glossary_definition->assignPageObject($this->page_object);
592 $this->current_object = $this->glossary_definition;
593 $this->glossary_definition->create(
true);
596 $this->page_object->setXMLContent(
"");
600 $this->in_file_item =
true;
602 $this->file_item->setTitle(
"dummy");
603 $this->file_item->setMode(
"filelist");
604 if (is_object($this->page_object)) {
605 $this->page_object->needsImportParsing(
true);
610 if ($a_attribs[
"Characteristic"] ==
"Code") {
611 $this->inside_code =
true;
616 $this->in_properties =
true;
620 if ($this->content_object->getType() ==
"lm") {
621 switch ($a_attribs[
"Name"]) {
623 $this->content_object->setLayout($a_attribs[
"Value"]);
627 $this->content_object->setPageHeader($a_attribs[
"Value"]);
631 $this->content_object->setTOCMode($a_attribs[
"Value"]);
635 $this->content_object->setActiveLMMenu(
640 case "ActiveNumbering":
641 $this->content_object->setActiveNumbering(
647 $this->content_object->setActiveTOC(
652 case "ActivePrintView":
653 $this->content_object->setActivePrintView(
659 $this->content_object->setCleanFrames(
665 $this->content_object->setPublicNotes(
670 case "HistoryUserComments":
671 $this->content_object->setHistoryUserComments(
677 $this->content_object->setRating(
683 $this->content_object->setRatingPages(
689 if ($a_attribs[
"Value"] !=
"") {
690 if ($this->pg_mapping[$a_attribs[
"Value"]] > 0) {
691 $this->content_object->setHeaderPage(
692 $this->pg_mapping[$a_attribs[
"Value"]]
699 if ($a_attribs[
"Value"] !=
"") {
700 if ($this->pg_mapping[$a_attribs[
"Value"]] > 0) {
701 $this->content_object->setFooterPage(
702 $this->pg_mapping[$a_attribs[
"Value"]]
708 case "LayoutPerPage":
709 $this->content_object->setLayoutPerPage($a_attribs[
"Value"]);
712 case "ProgressIcons":
713 $this->content_object->setProgressIcons($a_attribs[
"Value"]);
717 $this->content_object->setStoreTries($a_attribs[
"Value"]);
720 case "RestrictForwardNavigation":
721 $this->content_object->setRestrictForwardNavigation($a_attribs[
"Value"]);
724 case "DisableDefaultFeedback":
725 $this->content_object->setDisableDefaultFeedback($a_attribs[
"Value"]);
737 $this->in_meta_data =
true;
742 if (!$this->in_media_object) {
743 if (($this->coType !=
"tst") and ($this->coType !=
"qpl")) {
745 if ($this->current_object->getType() ==
"st" ||
746 $this->current_object->getType() ==
"pg") {
748 if ($this->current_object->getType() ==
"pg") {
749 $this->lm_page_object->create(
true);
751 $this->md =
new ilMD(
752 $this->content_object->getId(),
753 $this->current_object->getId(),
754 $this->current_object->getType()
758 elseif ($this->current_object->getType() ==
"gdf") {
759 $this->md =
new ilMD(
760 $this->glossary_object->getId(),
761 $this->current_object->getId(),
762 $this->current_object->getType()
768 $this->md =
new ilMD(
769 $this->current_object->getId(),
771 $this->current_object->getType()
777 $this->md =
new ilMD(
778 $this->content_object->getId(),
780 $this->current_object->getType()
782 if ($this->md->getGeneral() !=
false) {
783 $this->metadata_parsing_disabled =
true;
797 if ($import_id_parsed[
'type'] ==
'st') {
798 $this->mapping->addMapping(
799 'Modules/LearningModule',
801 $import_id_parsed[
'id'],
802 $this->current_object->getId()
810 if (!$this->in_meta_meta_data) {
811 if ($this->in_meta_data && !$this->in_glossary_definition) {
812 if (!$this->in_media_object) {
813 $this->current_object->setImportId($a_attribs[
"Entry"]);
815 $this->link_targets[$a_attribs[
"Entry"]] = $a_attribs[
"Entry"];
817 if ($this->in_file_item) {
818 if ($this->file_item_mapping[$a_attribs[
"Entry"]] ==
"") {
819 $this->file_item->create();
820 $this->file_item->setImportId($a_attribs[
"Entry"]);
821 $this->file_item_mapping[$a_attribs[
"Entry"]] = $this->file_item->getId();
824 if ($this->in_meta_data && $this->in_media_object) {
827 $mob_id = $this->mob_mapping[$a_attribs[
"Entry"]];
836 $this->media_object->create(
true,
false);
837 $this->mob_mapping[$a_attribs[
"Entry"]]
838 = $this->media_object->getId();
840 $this->media_object->setImportId($a_attribs[
"Entry"]);
841 $this->md =
new ilMD(
843 $this->media_object->getId(),
851 case "Meta-Metadata":
852 $this->in_meta_meta_data =
true;
857 if (is_object($this->page_object)) {
858 $this->page_object->setContainsIntLink(
true);
860 if ($this->in_map_area) {
863 $this->map_area->setTarget($a_attribs[
"Target"]);
864 $this->map_area->setType($a_attribs[
"Type"]);
865 $this->map_area->setTargetFrame($a_attribs[
"TargetFrame"]);
866 if (is_object($this->media_object)) {
868 $this->media_object->setContainsIntLink(
true);
875 if ($this->in_map_area) {
877 $this->map_area->setHref($a_attribs[
"Href"]);
878 $this->map_area->setExtTitle($a_attribs[
"Title"]);
884 $this->cur_qid = $a_attribs[
"QRef"];
885 $this->page_object->setContainsQuestion(
true);
889 $this->loc_type = $a_attribs[
"Type"];
896 if (($this->in_page_object || $this->in_glossary_definition)
897 && !$this->in_meta_data && !$this->in_media_object) {
898 if ($a_name ==
"Definition") {
899 $app_name =
"PageObject";
900 $app_attribs = array();
903 $app_attribs = $a_attribs;
907 if ($this->in_file_item && $app_name ==
"Identifier") {
908 $app_attribs[
"Entry"] =
"il__file_" . $this->file_item_mapping[$a_attribs[
"Entry"]];
912 $this->page_object->appendXMLContent($this->
buildTag(
"start", $app_name, $app_attribs));
923 if ($this->in_media_object && $this->media_meta_start) {
924 $this->media_meta_cache[] =
925 array(
"type" =>
"handlerBeginTag",
"par1" => $a_name,
"par2" => $a_attribs);
927 if ($a_name ==
"Identifier") {
928 if (!$this->in_media_object) {
929 $a_attribs[
"Entry"] =
"il__" . $this->current_object->getType() .
930 "_" . $this->current_object->getId();
932 $a_attribs[
"Entry"] =
"il__mob" .
933 "_" . $this->media_object->getId();
935 $a_attribs[
"Catalog"] =
"ILIAS";
938 parent::handlerBeginTag($a_xml_parser, $a_name, $a_attribs);
950 if ($this->content_object->getType() ==
"glo" &&
951 $this->in_glossary && !$this->in_media_object
952 && !$this->in_glossary_definition) {
973 if ($this->in_media_object && $this->media_meta_start) {
974 $this->media_meta_cache[] =
975 array(
"type" =>
"handlerEndTag",
"par1" => $a_name);
977 parent::handlerEndTag($a_xml_parser, $a_name);
983 if (($this->in_page_object || $this->in_glossary_definition)
984 && !$this->in_meta_data && !$this->in_media_object) {
985 $app_name = ($a_name ==
"Definition")
988 $this->page_object->appendXMLContent($this->
buildTag(
"end", $app_name));
992 case "StructureObject":
994 unset($this->structure_objects[count($this->structure_objects) - 1]);
999 $this->in_page_object =
false;
1000 if (($this->coType !=
"tst") and ($this->coType !=
"qpl")) {
1001 if (!$this->lm_page_object->isAlias()) {
1003 $this->page_object->updateFromXML();
1004 $this->pg_mapping[$this->lm_page_object->getImportId()]
1005 = $this->lm_page_object->getId();
1009 if ($import_id_parsed[
'type'] ==
'pg') {
1010 $this->mapping->addMapping(
1011 'Modules/LearningModule',
1013 $import_id_parsed[
'id'],
1014 $this->lm_page_object->getId()
1020 if ($this->page_object->containsIntLink()) {
1021 $this->pages_to_parse[
"lm:" . $this->page_object->getId()] =
"lm:" . $this->page_object->getId();
1025 if ($this->page_object->needsImportParsing()) {
1026 $this->pages_to_parse[
"lm:" . $this->page_object->getId()] =
"lm:" . $this->page_object->getId();
1030 if ($this->page_object->getContainsQuestion()) {
1031 $this->pages_to_parse[
"lm:" . $this->page_object->getId()] =
"lm:" . $this->page_object->getId();
1035 $xml = $this->page_object->getXMLContent();
1036 if ($this->cur_qid !=
"") {
1037 $ids = $this->qst_mapping[$this->cur_qid];
1038 if ($ids[
"pool"] > 0) {
1041 $xmlcontent = str_replace(
1043 "il__qst_" . $ids[
"pool"],
1046 $page->setXMLContent($xmlcontent);
1047 $page->updateFromXML();
1048 if ($this->page_object->needsImportParsing()) {
1049 $this->pages_to_parse[
"qpl:" . $page->getId()] =
"qpl:" . $page->getId();
1053 if ($ids[
"test"] > 0) {
1056 $xmlcontent = str_replace(
1058 "il__qst_" . $ids[
"test"],
1061 $page->setXMLContent($xmlcontent);
1062 $page->updateFromXML();
1063 if ($this->page_object->needsImportParsing()) {
1064 $this->pages_to_parse[
"qpl:" . $page->getId()] =
"qpl:" . $page->getId();
1072 $cnt = count($this->structure_objects);
1077 $parent_id = $this->structure_objects[
$cnt - 1]->getId();
1078 if ($this->lm_page_object->isAlias()) {
1080 $this->pg_into_tree[$parent_id][] = array(
"type" =>
"pg_alias",
"id" => $this->lm_page_object->getOriginId());
1084 $this->pg_into_tree[$parent_id][] = array(
"type" =>
"pg",
"id" => $this->lm_page_object->getId());
1088 unset($this->page_object);
1089 unset($this->lm_page_object);
1090 unset($this->container[count($this->container) - 1]);
1094 $this->in_media_object =
false;
1096 case "InteractiveImage":
1102 if (empty($this->mob_mapping[$this->media_object->getImportId()])) {
1108 $this->media_object->create(
true,
false);
1113 if ($this->media_object->containsIntLink()) {
1115 $this->mobs_with_int_links[] = $this->media_object->getId();
1118 $this->mob_mapping[$this->media_object->getImportId()]
1119 = $this->media_object->getId();
1124 $this->media_object->setId($this->mob_mapping[$this->media_object->getImportId()]);
1131 if (!$this->media_object->isAlias()) {
1133 $this->media_object->update();
1138 if ($this->media_object->containsIntLink()) {
1140 $this->mobs_with_int_links[] = $this->media_object->getId();
1146 if ($this->in_page_object || $this->in_glossary_definition) {
1147 if ($a_name !=
"InteractiveImage") {
1148 $this->page_object->appendXMLContent($this->media_object->getXML(
IL_MODE_ALIAS));
1156 case "MediaAliasItem":
1157 $this->in_media_item =
false;
1158 $this->media_object->addMediaItem($this->media_item);
1163 $this->in_map_area =
false;
1164 $this->media_item->addMapArea($this->map_area);
1168 $this->in_properties =
false;
1169 if ($this->content_object->getType() ==
"lm") {
1170 $this->content_object->update();
1175 $this->in_meta_data =
false;
1176 if (strtolower(get_class($this->current_object)) ==
"illmpageobject" && !$this->in_media_object) {
1178 if (is_object($this->lm_page_object)) {
1180 $this->current_object->MDUpdateListener(
'General');
1182 $this->current_object->getId(),
1183 $this->current_object->getImportId()
1186 } elseif ((strtolower(get_class($this->current_object)) ==
"ilobjquestionpool" ||
1187 strtolower(get_class($this->current_object)) ==
"ilobjtest") &&
1188 !$this->in_media_object) {
1192 if ($this->metadata_parsing_disabled) {
1195 if ($this->in_page_object) {
1196 $this->page_object->MDUpdateListener(
'General');
1198 $this->page_object->getId(),
1199 $this->page_object->getImportId()
1202 $this->current_object->MDUpdateListener(
'General');
1204 $this->current_object->getId(),
1205 $this->current_object->getImportId()
1209 } elseif (strtolower(get_class($this->current_object)) ==
"ilstructureobject") {
1211 $cnt = count($this->structure_objects);
1213 $parent_id = $this->structure_objects[
$cnt - 2]->getId();
1215 $parent_id = $this->lm_tree->getRootId();
1220 $this->st_into_tree[] = array(
"id" => $this->current_object->getId(),
1221 "parent" => $parent_id);
1224 $this->current_object->MDUpdateListener(
'General');
1226 $this->current_object->getId(),
1227 $this->current_object->getImportId()
1229 } elseif (strtolower(get_class($this->current_object)) ==
"ilobjlearningmodule" ||
1230 strtolower(get_class($this->current_object)) ==
"ilobjcontentobject" ||
1231 (strtolower(get_class($this->current_object)) ==
"ilobjglossary" && $this->in_glossary)) {
1234 } elseif (strtolower(get_class($this->current_object)) ==
"ilglossarydefinition" && !$this->in_media_object) {
1238 $this->page_object->setId($this->glossary_definition->getId());
1239 $this->page_object->updateFromXML();
1246 if (strtolower(get_class($this->current_object)) ==
"ilobjlearningmodule" ||
1247 strtolower(get_class($this->current_object)) ==
"ilobjglossary") {
1248 if (strtolower(get_class($this->current_object)) ==
"ilobjglossary" &&
1249 $this->content_object->getType() !=
"glo") {
1251 $this->current_object->setTitle($this->content_object->getTitle() .
" - " .
1252 $this->lng->txt(
"glossary"));
1255 $this->current_object->MDUpdateListener(
'General');
1264 if ($this->in_media_object) {
1266 $this->media_object->MDUpdateListener(
'General');
1269 if ($this->in_glossary_definition) {
1270 $this->glossary_definition->MDUpdateListener(
'General');
1275 case "Meta-Metadata":
1276 $this->in_meta_meta_data =
false;
1280 $this->in_file_item =
false;
1282 if ($this->file_item->getImportId($a_attribs[
"Entry"] !=
"")) {
1283 $this->file_item->update();
1289 unset($this->container[count($this->container) - 1]);
1293 $this->in_glossary =
false;
1296 case "GlossaryTerm":
1297 $term = trim($this->chr_data);
1298 $term = str_replace(
"<",
"<", $term);
1299 $term = str_replace(
">",
">", $term);
1300 $this->glossary_term->setTerm($term);
1301 $this->glossary_term->create();
1302 $iia = explode(
"_", $this->glossary_term->getImportId());
1303 $this->glossary_term_map[(int) $iia[count($iia) - 1]] = $this->glossary_term->getId();
1307 $this->inside_code =
false;
1311 $this->in_glossary_definition =
false;
1312 $this->page_object->updateFromXML();
1315 $this->page_object->buildDom();
1316 $this->glossary_definition->setShortText($this->page_object->getFirstParagraphText());
1317 $this->glossary_definition->update();
1320 if ($this->page_object->containsIntLink()) {
1322 $this->pages_to_parse[
"gdf:" . $this->page_object->getId()] =
"gdf:" . $this->page_object->getId();
1324 if ($this->page_object->needsImportParsing()) {
1325 $this->pages_to_parse[
"gdf:" . $this->page_object->getId()] =
"gdf:" . $this->page_object->getId();
1330 if ($this->in_media_item) {
1331 $this->media_item->setFormat(trim($this->chr_data));
1333 if ($this->in_file_item) {
1334 $this->file_item->setFileType(trim($this->chr_data));
1339 if (!$this->in_media_object) {
1340 $this->current_object->setTitle(trim($this->chr_data));
1343 $this->media_object->setTitle(trim($this->chr_data));
1362 if ($this->in_media_object) {
1363 $this->media_item->setCaption(trim($this->chr_data));
1367 case "TextRepresentation":
1368 if ($this->in_media_object) {
1369 $this->media_item->setTextRepresentation(trim($this->chr_data));
1376 if ($this->in_media_item) {
1377 $this->media_item->setLocationType($this->loc_type);
1378 if ($this->loc_type ==
"Reference") {
1379 $this->media_item->setLocation(str_replace(
"&",
"&", trim($this->chr_data)));
1381 $this->media_item->setLocation(trim($this->chr_data));
1385 if ($this->in_file_item) {
1387 $this->file_item->setFileName(trim($this->chr_data));
1391 if ($this->file_item->getType() ==
"file" &&
1392 is_int(strpos($this->chr_data,
"&")) &&
1393 is_int(strpos($this->chr_data,
";"))) {
1394 $imp_dir = $this->import_dir;
1395 $source_dir = $imp_dir .
"/" . $this->subdir .
"/objects/" .
1396 $this->file_item->getImportId();
1399 if ($dir = opendir($source_dir)) {
1400 while (
false !== ($file = readdir($dir))) {
1401 if ($file !=
"." && $file !=
"..") {
1402 $this->file_item->setFileName($file);
1410 $this->file_item->setTitle(trim($this->chr_data));
1416 $this->chr_data =
"";
1428 if ($this->in_meta_data && $this->
processMeta()) {
1432 if ($this->in_media_object && $this->media_meta_start) {
1433 $this->media_meta_cache[] =
1434 array(
"type" =>
"handlerCharacterData",
"par1" => $a_data);
1436 parent::handlerCharacterData($a_xml_parser, $a_data);
1444 $a_data = str_replace(
"<",
"<", $a_data);
1445 $a_data = str_replace(
">",
">", $a_data);
1449 $a_data = preg_replace(
"/\n/",
"", $a_data);
1450 if (!$this->inside_code) {
1451 $a_data = preg_replace(
"/\t+/",
"", $a_data);
1454 $this->chr_data .= $a_data;
1456 if (!empty($a_data) || $a_data ===
"0") {
1459 if (($this->in_page_object || $this->in_glossary_definition)
1460 && !$this->in_meta_data && !$this->in_media_object) {
1461 $this->page_object->appendXMLContent($a_data);
1464 if ($this->in_meta_data) {
1473 if ($this->in_map_area) {
1474 $this->map_area->appendTitle($a_data);
1489 foreach ($this->media_meta_cache as $cache_entry) {
1490 switch ($cache_entry[
"type"]) {
1491 case "handlerBeginTag":
1492 parent::handlerBeginTag(
1494 $cache_entry[
"par1"],
1495 $cache_entry[
"par2"]
1499 case "handlerEndTag":
1500 parent::handlerEndTag(
1502 $cache_entry[
"par1"]
1506 case "handlerCharacterData":
1507 parent::handlerCharacterData(
1509 $cache_entry[
"par1"]
1515 $this->media_meta_start =
false;
1516 $this->media_meta_cache[] = array();
static _exists($a_parent_type, $a_id, $a_lang="", $a_no_cache=false)
Checks whether page exists.
__construct(&$a_content_object, $a_xml_file, $a_subdir, $a_import_dir="")
Constructor.
handlerBeginTag($a_xml_parser, $a_name, $a_attribs)
handler for begin of element
startParsing()
start parser
$metadata_parsing_disabled
static rCopy($a_sdir, $a_tdir, $preserveTimeAttributes=false)
Copies content of a directory $a_sdir recursively to a directory $a_tdir.
enableMDParsing($a_status)
processPagesToParse()
parse pages that contain files, mobs and/or internal links
emptyMediaMetaCache(&$a_xml_parser)
send all cached tags to the meta data parser and clear the cache
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' ...
setImportMapping(ilImportMapping $mapping=null)
Set import mapping.
copyFileItems()
copy files of file items
setQuestionMapping($a_map)
set question import ident to pool/test question id mapping
storeTree()
insert StructureObjects and PageObjects into tree
static _getSourcesOfTarget($a_target_type, $a_target_id, $a_target_inst)
get all sources of a link target
Glossary definition page object.
static _writeImportId($a_id, $a_import_id)
write import id to db (static)
static makeDir($a_dir)
creates a new directory and inherits all filesystem permissions of the parent directory You may pass ...
Class ilGlossaryDefinition.
_resolveIntLinks($question_id)
static getInstance($a_parent_type, $a_id=0, $a_old_nr=0, $a_lang="-")
Get page object instance.
handlerEndTag($a_xml_parser, $a_name)
handler for end of element
__construct(Container $dic, ilPlugin $plugin)
handlerCharacterData($a_xml_parser, $a_data)
handler for character data
copyMobFiles()
copy multimedia object files from import zip file to mob directory
static getLogger($a_component_id)
Get component logger.
processMeta()
check whether meta data should be processed
static yn2tf($a_yn)
convert "y"/"n" to true/false
buildTag($type, $name, $attr="")
generate a tag with given name and attributes
static getWebspaceDir($mode="filesystem")
get webspace directory
Extension of ilPageObject for learning modules.
getGlossaryTermMap()
Get glossary term map (imported ids to new ids)
setHandlers($a_xml_parser)
set event handlers