19 declare(strict_types=1);
29 public function init(): void
32 $this->
user = $DIC[
"ilUser"];
33 $this->rbac_admin = $DIC[
"rbacadmin"];
34 $this->log = $DIC[
"ilLoggerFactory"]->getRootLogger();
39 if ($new_id = $a_mapping->
getMapping(
"Services/Container",
"objs", $a_id)) {
47 $this->data = $parser->start();
49 $a_mapping->
addMapping(
"Modules/LearningSequence",
"lso", $a_id, (
string) $this->obj->getId());
65 $roles = $this->obj->getLSRoles();
68 $roles->getDefaultAdminRole()
74 $old_ref_id = $this->data[
"object"][
"ref_id"];
75 $new_ref_id = $mapping->
getMapping(
"Services/Container",
"refs", $old_ref_id);
77 $this->obj->setRefId((
int) $new_ref_id);
83 foreach ($ls_data as $data) {
84 $old_ref_id = $data[
"id"];
85 $new_ref_id = $mapping->
getMapping(
"Services/Container",
"refs", $old_ref_id);
87 $ls_item_pc_value = null;
88 if (key_exists(
"ls_item_pc_value", $data)) {
89 $ls_item_pc_value = $data[
"ls_item_pc_value"];
94 $data[
"ls_item_pc_condition_type"],
99 $data[
"ls_item_type"] ??
"",
100 $data[
"ls_item_title"] ??
"",
101 $data[
"ls_item_description"] ??
"",
102 $data[
"ls_item_icon_path"] ??
"",
103 (
bool) $data[
"ls_item_is_online"],
104 (
int) $data[
"ls_item_order_number"],
110 $this->obj->storeLSItems($ls_items);
117 ->withAbstract($ls_settings[
"abstract"])
118 ->withExtro($ls_settings[
"extro"])
119 ->withMembersGallery((
bool) $ls_settings[
"members_gallery"])
122 if ($ls_settings[
"abstract_img"] !=
"") {
124 $abstract_img_data = $this->
decodeImageData($ls_settings[
"abstract_img_data"]);
127 ->withAbstractImage(
$path)
131 if ($ls_settings[
"extro_img"] !=
"") {
133 $extro_img_data = $this->
decodeImageData($ls_settings[
"extro_img_data"]);
136 ->withExtroImage(
$path)
147 $new_ref_ids = array_map(
function ($old_ref_id) use ($mapping) {
148 return $mapping->
getMapping(
"Services/Container",
"refs", $old_ref_id);
149 }, $lp_settings[
"lp_item_ref_ids"]);
151 if (!is_null($collection)) {
152 $collection->activateEntries($new_ref_ids);
156 $settings->setMode((
int) $lp_settings[
"lp_mode"]);
162 return base64_decode($data);
167 $fs = $this->obj->getDI()[
'db.filesystem'];
168 return $fs->getStoragePathFor(
171 $fs->getSuffix($path)
177 file_put_contents($path, $data);
getNewImagePath(string $type, string $path)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
buildSettings(array $ls_settings)
finalProcessing(ilImportMapping $a_mapping)
addMapping(string $a_comp, string $a_entity, string $a_old_id, string $a_new_id)
buildLSItems(array $ls_data, ilImportMapping $mapping)
writeToFileSystem($data, string $path)
static getInstanceByMode(int $a_obj_id, int $a_mode)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getMapping(string $a_comp, string $a_entity, string $a_old_id)
updateRefId(ilImportMapping $mapping)
afterContainerImportProcessing(ilImportMapping $mapping)
decodeImageData(string $data)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static getInstanceByObjId(?int $obj_id, bool $stop_on_error=true)
get an instance of an Ilias object by object id
Class ilRbacAdmin Core functions for role based access control.
buildLPSettings(array $lp_settings, ilImportMapping $mapping)
importXmlRepresentation(string $a_entity, string $a_id, string $a_xml, ilImportMapping $a_mapping)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...