42 $this->obj_definition = $DIC[
"objDefinition"];
53 public function parse(
string $a_root_id): void
55 $sxml = simplexml_load_string($this->xml);
56 $this->root_id = (
int) $a_root_id;
57 foreach ($sxml->Item as $item) {
58 $this->
initItem($item, $this->mapping->getTargetId());
68 $title = (string) $item[
'Title'];
69 $ref_id = (string) $item[
'RefId'];
70 $obj_id = (string) $item[
'Id'];
71 $type = (string) $item[
'Type'];
74 $new_ref = $this->
getMapping()->getMapping(
'components/ILIAS/Container',
'refs',
$ref_id);
78 ($obj_id == $this->root_id)
82 $new_ref = $this->mapping->getMapping(
'components/ILIAS/Container',
'refs',
'0');
85 $this->mapping->addMapping(
'components/ILIAS/Container',
'objs', $obj_id, (
string)
ilObject::_lookupObjId((
int) $new_ref));
86 $this->mapping->addMapping(
'components/ILIAS/ILIASObject',
'obj', $obj_id, (
string)
ilObject::_lookupObjId((
int) $new_ref));
90 $new_ref = $this->
createObject((
int)
$ref_id, (
int) $obj_id, $type, $title, $a_parent_node);
98 foreach ($item->Timing as $timing) {
99 $this->
parseTiming($new_ref, $a_parent_node, $timing);
102 foreach ($item->Item as $subitem) {
103 $this->
initItem($subitem, $new_ref);
106 $new_obj_id = $this->mapping->getMapping(
'components/ILIAS/Container',
'objs', $obj_id);
109 if ((
int) $item[
'Style']) {
110 self::$style_map[(
int) $item[
'Style']][] = $new_obj_id;
114 if (
$ilSetting->get(
'enable_cat_page_edit',
'0')) {
115 if ($item[
'Page'] ==
"1") {
116 $this->mapping->addMapping(
'components/ILIAS/COPage',
'pg',
'cont:' . $obj_id,
'cont:' . $new_obj_id);
117 $this->cont_log->debug(
"add pg cont mapping, old: " . $obj_id .
", new: " . $new_obj_id .
", Page: -" . $item[
'Page'] .
"-");
120 if ($item[
'StartPage'] ==
"1") {
121 $this->mapping->addMapping(
'components/ILIAS/COPage',
'pg',
'cstr:' . $obj_id,
'cstr:' . $new_obj_id);
132 $type = (string) $timing[
'Type'];
133 $visible = (string) $timing[
'Visible'];
134 $changeable = (string) $timing[
'Changeable'];
137 $crs_item->setTimingType((
int) $type);
138 $crs_item->toggleVisible((
bool) $visible);
139 $crs_item->toggleChangeable((
bool) $changeable);
141 foreach ($timing->children() as $sub) {
142 switch ($sub->getName()) {
153 case 'SuggestionStart':
155 $crs_item->setSuggestionStart($dt->get(
IL_CAL_UNIX));
158 case 'SuggestionEnd':
160 $crs_item->setSuggestionEnd($dt->get(
IL_CAL_UNIX));
169 if ($crs_item->getTimingStart()) {
170 $crs_item->update($a_ref_id, $a_parent_id);
184 $new_obj_id = $this->
getMapping()->getMapping(
'components/ILIAS/Container',
'objs', (
string) $obj_id);
188 $obj->createReference();
189 $obj->putInTree($parent_node);
190 $obj->setPermissions($parent_node);
191 $this->mapping->addMapping(
'components/ILIAS/Container',
'refs', (
string) $ref_id, (
string) $obj->getRefId());
192 return $obj->getRefId();
196 if (!$objDefinition->isAllowedInRepository($type) || $objDefinition->isInactivePlugin($type)) {
197 $this->cont_log->notice(
'Cannot import object of type: ' . $type);
201 $class_name =
"ilObj" . $objDefinition->getClassName($type);
202 $location = $objDefinition->getLocation($type);
204 $new =
new $class_name();
205 $new->setTitle($title);
207 $new->createReference();
208 $new->putInTree($parent_node);
209 $new->setPermissions($parent_node);
211 $this->mapping->addMapping(
'components/ILIAS/Container',
'objs', (
string) $obj_id, (
string) $new->getId());
212 $this->mapping->addMapping(
'components/ILIAS/ILIASObject',
'obj', (
string) $obj_id, (
string) $new->getId());
213 $this->mapping->addMapping(
'components/ILIAS/Container',
'refs', (
string) $ref_id, (
string) $new->getRefId());
215 return $new->getRefId();
initItem(SimpleXMLElement $item, int $a_parent_node)
parseTiming(int $a_ref_id, int $a_parent_id, SimpleXMLElement $timing)
createObject(int $ref_id, int $obj_id, string $type, string $title, int $parent_node)
static getLogger(string $a_component_id)
Get component logger.
static _lookupObjId(int $ref_id)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
__construct(ilImportMapping $mapping, string $xml='')
static getInstanceByObjId(?int $obj_id, bool $stop_on_error=true)
get an instance of an Ilias object by object id
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Class ilObjectActivation.
ilObjectDefinition $obj_definition