41 return array(
"5.1.0",
"4.1.0");
44 protected function getXmlNamespace(
string $a_entity,
string $a_schema_version): string
46 return "https://www.ilias.de/xml/Modules/MediaPool/" . $a_entity;
54 $this->master_lang_only = $a_val;
66 if ($a_mep !==
null) {
67 $this->transl_into =
true;
68 $this->transl_into_mep = $a_mep;
69 $this->transl_lang = $a_lang;
71 $this->transl_into =
false;
93 protected function getTypes(
string $a_entity,
string $a_version): array
96 if ($a_entity ===
"mep") {
102 "Description" =>
"text",
103 "DefaultWidth" =>
"integer",
104 "DefaultHeight" =>
"integer");
110 "Description" =>
"text",
111 "DefaultWidth" =>
"integer",
112 "DefaultHeight" =>
"integer",
113 "ForTranslation" =>
"integer" 119 if ($a_entity ===
"mep_tree") {
120 switch ($a_version) {
124 "MepId" =>
"integer",
125 "Child" =>
"integer",
126 "Parent" =>
"integer",
127 "Depth" =>
"integer",
130 "ForeignId" =>
"integer",
138 public function readData(
string $a_entity,
string $a_version, array $a_ids): void
143 if ($a_entity ===
"mep") {
144 switch ($a_version) {
147 " default_width, default_height" .
148 " FROM mep_data JOIN object_data ON (mep_data.id = object_data.obj_id) " .
150 $ilDB->in(
"id", $a_ids,
false,
"integer"));
154 $q =
"SELECT id, title, description, " .
155 " default_width, default_height" .
156 " FROM mep_data JOIN object_data ON (mep_data.id = object_data.obj_id) " .
158 $ilDB->in(
"id", $a_ids,
false,
"integer");
161 $this->data = array();
162 while ($rec =
$ilDB->fetchAssoc($set)) {
164 $rec[
"for_translation"] = 1;
167 foreach ($rec as $k => $v) {
173 $this->data[] = $rec;
180 if ($a_entity ===
"mep_tree") {
181 switch ($a_version) {
184 " ,parent,depth,type,title,foreign_id " .
185 " FROM mep_tree JOIN mep_item ON (child = obj_id) " .
187 $ilDB->in(
"mep_id", $a_ids,
false,
"integer") .
194 $type =
" AND type <> " .
$ilDB->quote(
"mob",
"text");
197 $q =
"SELECT mep_id, child " .
198 " ,parent,depth,type,title,foreign_id, import_id " .
199 " FROM mep_tree JOIN mep_item ON (child = obj_id) " .
201 $ilDB->in(
"mep_id", $a_ids,
false,
"integer") .
206 $this->data = array();
207 while ($rec =
$ilDB->fetchAssoc($set)) {
208 $set2 =
$ilDB->query(
"SELECT for_translation FROM mep_data WHERE id = " .
$ilDB->quote($rec[
"mep_id"],
true));
209 $rec2 =
$ilDB->fetchAssoc($set2);
210 if (!$rec2[
"for_translation"]) {
211 $rec[
"import_id"] =
"il_" .
IL_INST_ID .
"_" . $rec[
"type"] .
"_" . $rec[
"child"];
214 foreach ($rec as $k => $v) {
220 $this->data[] = $rec;
231 ?array $a_rec =
null,
237 "mep_tree" => array(
"ids" => $a_rec[
"Id"] ??
null)
248 string $a_schema_version
259 if ($new_id = $a_mapping->
getMapping(
'components/ILIAS/Container',
'objs', $a_rec[
'Id'])) {
263 $newObj->setType(
"mep");
267 $newObj->setTitle($a_rec[
"Title"]);
268 $newObj->setDescription($a_rec[
"Description"]);
269 $newObj->setDefaultWidth((
int) $a_rec[
"DefaultWidth"]);
270 $newObj->setDefaultHeight((
int) $a_rec[
"DefaultHeight"]);
271 $newObj->setForTranslation((
bool) ($a_rec[
"ForTranslation"] ??
false));
274 $this->current_obj = $newObj;
275 $a_mapping->
addMapping(
"components/ILIAS/MediaPool",
"mep", $a_rec[
"Id"], $newObj->getId());
276 $a_mapping->
addMapping(
"components/ILIAS/ILIASObject",
"obj", $a_rec[
"Id"], $newObj->getId());
278 "components/ILIAS/MetaData",
280 $a_rec[
"Id"] .
":0:mep",
281 $newObj->getId() .
":0:mep" 287 switch ($a_rec[
"Type"]) {
289 $parent = (
int) $a_mapping->
getMapping(
"components/ILIAS/MediaPool",
"mep_tree", $a_rec[
"Parent"]);
291 $this->current_obj->createFolder($a_rec[
"Title"], $parent);
293 "components/ILIAS/MediaPool",
301 $parent = (
int) $a_mapping->
getMapping(
"components/ILIAS/MediaPool",
"mep_tree", $a_rec[
"Parent"]);
302 $mob_id = (
int) $a_mapping->
getMapping(
"components/ILIAS/MediaObjects",
"mob", $a_rec[
"ForeignId"]);
304 $item->setType(
"mob");
305 $item->setForeignId($mob_id);
306 $item->setImportId($a_rec[
"ImportId"]);
307 $item->setTitle($a_rec[
"Title"]);
309 if ($item->getId() > 0) {
313 $this->current_obj->insertInTree($item->getId(), $parent);
318 $parent = (
int) $a_mapping->
getMapping(
"components/ILIAS/MediaPool",
"mep_tree", $a_rec[
"Parent"]);
321 $item->setType(
"pg");
322 $item->setTitle($a_rec[
"Title"]);
323 $item->setImportId($a_rec[
"ImportId"]);
325 $a_mapping->
addMapping(
"components/ILIAS/MediaPool",
"pg", $a_rec[
"Child"], $item->getId());
327 "components/ILIAS/COPage",
329 "mep:" . $a_rec[
"Child"],
330 "mep:" . $item->getId()
332 if ($item->getId() > 0) {
336 $this->current_obj->insertInTree($item->getId(), $parent);
340 } elseif ($a_rec[
"Type"] ===
"pg") {
341 $imp_id = explode(
"_", $a_rec[
"ImportId"]);
342 if ($imp_id[0] ===
"il" &&
348 $pool = current($pool);
350 $a_mapping->
addMapping(
"components/ILIAS/MediaPool",
"pg", $a_rec[
"Child"], $pg_id);
352 "components/ILIAS/COPage",
354 "mep:" . $a_rec[
"Child"],
convertToLeadingUpper(string $a_str)
Make xyz_abc a XyzAbc string.
addMapping(string $a_comp, string $a_entity, string $a_old_id, string $a_new_id)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
getMapping(string $a_comp, string $a_entity, string $a_old_id)
getDirectDataFromQuery(string $a_query, bool $a_convert_to_leading_upper=true, bool $a_set=true)
Get data from query.This is a standard procedure, all db field names are directly mapped to abstract ...
static getInstanceByObjId(?int $obj_id, bool $stop_on_error=true)
get an instance of an Ilias object by object id
stripTags(array $rec, array $omit_keys=[])