19 declare(strict_types=1);
33 $this->dom_util = $DIC->copage()->internal()->domain()->domUtil();
42 bool $a_inline_only =
true 45 $path =
"//MediaObject/MediaAlias";
47 $nodes = $this->dom_util->path($dom,
$path);
48 foreach ($nodes as $node) {
49 $id_arr = explode(
"_", $node->getAttribute(
"OriginId"));
50 $mob_id = $id_arr[count($id_arr) - 1];
51 $mob_ids[$mob_id] = $mob_id;
55 $path =
"//InteractiveImage/MediaAlias";
56 $nodes = $this->dom_util->path($dom,
$path);
57 foreach ($nodes as $node) {
58 $id_arr = explode(
"_", $node->getAttribute(
"OriginId"));
59 $mob_id = $id_arr[count($id_arr) - 1];
60 $mob_ids[$mob_id] = $mob_id;
64 $path =
"//IntLink[@Type = 'MediaObject']";
65 $nodes = $this->dom_util->path($dom,
$path);
66 foreach ($nodes as $node) {
67 if (($node->getAttribute(
"TargetFrame") ==
"") ||
69 $target = $node->getAttribute(
"Target");
70 $id_arr = explode(
"_", $target);
72 (substr($target, 0, 4) ==
"il__")) {
73 $mob_id = $id_arr[count($id_arr) - 1];
75 $mob_ids[$mob_id] = $mob_id;
95 foreach ($mob_ids as $mob_id => $dummy) {
97 $mob_obj = new \ilObjMediaObject($mob_id);
98 $mobs_xml .= $mob_obj->getXML(
IL_MODE_OUTPUT, $a_inst = 0,
true, $offline);
112 $path =
"//MediaObject/MediaAlias[@OriginId='il__mob_$a_mob_id']";
113 $nodes = $this->dom_util->path($dom,
$path);
114 $mal_node = $nodes->item($a_nr - 1);
115 $mob_node = $mal_node->parentNode;
116 return $this->dom_util->dump($mob_node);
122 bool $a_reuse_existing_by_import =
false 126 $path =
"//MediaAlias";
128 $nodes = $this->dom_util->path($dom,
$path);
129 foreach ($nodes as $node) {
131 $old_id = $node->getAttribute(
"OriginId");
132 $old_id = explode(
"_", $old_id);
133 $old_id = $old_id[count($old_id) - 1];
137 if (($a_mapping[$old_id] ?? 0) > 0) {
138 $new_id = $a_mapping[$old_id];
139 if ($a_reuse_existing_by_import) {
142 $imp = explode(
"_", $import_id);
150 if ($import_id ==
"" && $a_reuse_existing_by_import) {
159 if (in_array($old_id, $med_of_def_lang)) {
164 $node->setAttribute(
"OriginId",
"il__mob_" . $new_id);
ILIAS COPage Dom DomUtil $dom_util
getMultimediaXML(\DOMDocument $dom, bool $offline=false)
get a xml string that contains all media object elements, that are referenced by any media alias in t...
getDomDoc()
Get dom doc (DOMDocument)
static _lookupImportId(int $obj_id)
static _exists(int $id, bool $reference=false, ?string $type=null)
checks if an object exists in object_data
Class ilPageObject Handles PageObjects of ILIAS Learning Modules (see ILIAS DTD)
static _lookupType(int $id, bool $reference=false)
collectMediaObjects(\DOMDocument $dom, bool $a_inline_only=true)
get all media objects, that are referenced and used within the page
resolveMediaAliases(\ilPageObject $page, array $a_mapping, bool $a_reuse_existing_by_import=false)
getMediaAliasElement(\DOMDocument $dom, int $a_mob_id, int $a_nr=1)
get complete media object (alias) element