33 protected \ILIAS\DI\UIServices
$ui;
40 public function init(): void
44 $this->
user = $DIC->user();
46 $this->
ui = $DIC->ui();
47 $this->
lng = $DIC->language();
48 $this->global_tpl = $DIC[
'tpl'];
49 $this->mob_usage_repo = $DIC->mediaObjects()
53 $this->
ctrl = $DIC->ctrl();
66 parent::setNode($a_node);
77 $this->hier_id = $a_hier_id;
82 $this->mediaobject = $a_mediaobject;
105 $this->node = $this->dom->create_element(
"PageContent");
107 $this->mob_node = $this->dom->create_element(
"MediaObject");
108 $this->mob_node = $this->node->append_child($this->mob_node);
109 $this->mal_node = $this->dom->create_element(
"MediaAlias");
110 $this->mal_node = $this->mob_node->append_child($this->mal_node);
114 $item_node = $this->dom->create_element(
"MediaAliasItem");
115 $item_node = $this->mob_node->append_child($item_node);
116 $item_node->set_attribute(
"Purpose",
"Standard");
118 if (is_null($media_item)) {
122 $layout_node = $this->dom->create_element(
"Layout");
123 $layout_node = $item_node->append_child($layout_node);
124 if ($media_item->getWidth() > 0) {
127 if ($media_item->getHeight() > 0) {
130 $layout_node->set_attribute(
"HorizontalAlign",
"Left");
133 if ($media_item->getCaption() !=
"") {
134 $cap_node = $this->dom->create_element(
"Caption");
135 $cap_node = $item_node->append_child($cap_node);
136 $cap_node->set_attribute(
"Align",
"bottom");
137 $cap_node->set_content($media_item->getCaption());
141 if ($media_item->getTextRepresentation() !=
"") {
142 $tr_node = $this->dom->create_element(
"TextRepresentation");
143 $tr_node = $item_node->append_child($tr_node);
144 $tr_node->set_content($media_item->getTextRepresentation());
147 $pars = $media_item->getParameters();
148 foreach ($pars as $par => $val) {
149 $par_node = $this->dom->create_element(
"Parameter");
150 $par_node = $item_node->append_child($par_node);
151 $par_node->set_attribute(
"Name", $par);
152 $par_node->set_attribute(
"Value", $val);
156 $fullscreen_item = $this->
getMediaObject()->getMediaItem(
"Fullscreen");
157 if (is_object($fullscreen_item)) {
158 $item_node = $this->dom->create_element(
"MediaAliasItem");
159 $item_node = $this->mob_node->append_child($item_node);
160 $item_node->set_attribute(
"Purpose",
"Fullscreen");
163 $layout_node = $this->dom->create_element(
"Layout");
164 $layout_node = $item_node->append_child($layout_node);
165 if ($fullscreen_item->getWidth() > 0) {
166 $layout_node->set_attribute(
"Width", $fullscreen_item->getWidth());
168 if ($fullscreen_item->getHeight() > 0) {
169 $layout_node->set_attribute(
"Height", $fullscreen_item->getHeight());
173 if ($fullscreen_item->getCaption() !=
"") {
174 $cap_node = $this->dom->create_element(
"Caption");
175 $cap_node = $item_node->append_child($cap_node);
176 $cap_node->set_attribute(
"Align",
"bottom");
177 $cap_node->set_content($fullscreen_item->getCaption());
181 if ($fullscreen_item->getTextRepresentation() !=
"") {
182 $tr_node = $this->dom->create_element(
"TextRepresentation");
183 $tr_node = $item_node->append_child($tr_node);
184 $tr_node->set_content($fullscreen_item->getTextRepresentation());
187 $pars = $fullscreen_item->getParameters();
188 foreach ($pars as $par => $val) {
189 $par_node = $this->dom->create_element(
"Parameter");
190 $par_node = $item_node->append_child($par_node);
191 $par_node->set_attribute(
"Name", $par);
192 $par_node->set_attribute(
"Value", $val);
204 if (is_object($this->mob_node)) {
205 $this->mal_node = $this->mob_node->first_child();
206 if (is_object($this->mal_node) && $this->mal_node->node_name() ==
"MediaAlias") {
214 $xml = $this->dom->dump_node($this->node);
220 if (is_object($this->mob_node)) {
222 if (is_object($mal_node)) {
223 if (!empty($a_class)) {
239 if (is_object($this->mob_node)) {
241 if (is_object($mal_node)) {
254 if (is_object($this->mob_node)) {
256 if (is_object($mal_node)) {
257 if (!empty($a_class)) {
270 if (is_object($this->mob_node)) {
272 if (is_object($mal_node)) {
282 return array(
"pc_mob");
305 self::saveMobUsage($a_page, $a_domdoc);
306 foreach ($mob_ids as $mob) {
309 $usages = $mob_obj->getUsages(
false);
310 if (count($usages) == 0) {
335 foreach ($mob_ids as $mob) {
338 $usages = $mob_obj->getUsages(
false);
339 if (count($usages) == 0) {
359 self::saveMobUsage($a_page, $a_old_domdoc, $a_old_nr);
372 $nodes = $xpath->query(
'//MediaAlias');
373 foreach ($nodes as
$node) {
374 $id_arr = explode(
"_", $node->getAttribute(
"OriginId"));
375 $mob_id = $id_arr[count($id_arr) - 1];
376 if ($mob_id > 0 && $id_arr[1] ==
"") {
377 $usages[$mob_id] =
true;
383 $nodes = $xpath->query(
'//MediaObject/MetaData/General/Identifier');
384 foreach ($nodes as $node) {
385 $mob_entry = $node->getAttribute(
"Entry");
386 $mob_arr = explode(
"_", $mob_entry);
387 $mob_id = $mob_arr[count($mob_arr) - 1];
388 if ($mob_id > 0 && $mob_arr[1] ==
"") {
389 $usages[$mob_id] =
true;
395 $nodes = $xpath->query(
"//IntLink[@Type='MediaObject']");
396 foreach ($nodes as $node) {
397 $mob_target = $node->getAttribute(
"Target");
398 $mob_arr = explode(
"_", $mob_target);
402 $mob_id = $mob_arr[count($mob_arr) - 1];
403 if ($mob_id > 0 && $mob_arr[1] ==
"") {
404 $usages[$mob_id] =
true;
414 $log->
debug(
"Deleted all mob usages page id: " . $a_page->
getId() .
", lang" . $a_page->
getLanguage() .
", old nr: " . $a_old_nr);
415 foreach ($usages as $mob_id => $val) {
418 $log->
debug(
"Save usage mob id: " . $mob_id .
", old nr: " . $a_old_nr);
435 bool $a_abstract_only =
false 439 if ($a_mode ==
"offline") {
443 $page->getParentType() .
":pg",
448 foreach ($mob_ids as $mob_id) {
450 $srts = $mob->getSrtFiles();
451 foreach ($srts as $srt) {
452 if (
$ilUser->getLanguage() == $srt[
"language"]) {
454 $a_output = str_replace(
"[[[[[mobsubtitle;il__mob_" . $mob->getId() .
"_Standard]]]]]", $srt_content, $a_output);
460 if ($a_abstract_only) {
464 if ($a_mode ===
"edit") {
465 $a_output = str_replace(
466 "{{{{{Unsupported Media Type}}}}}",
467 $this->
ui->renderer()->render(
468 $this->
ui->factory()->messageBox()->info(
469 $this->
lng->txt(
"copg_unsupported_media_type")
475 $a_output = str_replace(
476 "{{{{{Unsupported Media Type}}}}}",
484 $suffix =
"-" . $page->getParentType() .
"-" . $page->getId();
485 $modal = $this->
ui->factory()->modal()->roundtrip(
486 $this->
lng->txt(
"cont_fullscreen"),
487 $this->
ui->factory()->legacy(
"<iframe class='il-copg-mob-fullscreen' id='il-copg-mob-fullscreen" . $suffix .
"'></iframe>")
489 $show_signal = $modal->getShowSignal();
493 il.COPagePres.setFullscreenModalShowSignal('$show_signal', '$suffix'); 496 self::$modal_show_signal = $show_signal;
497 self::$modal_suffix = $suffix;
498 $this->global_tpl->addOnloadCode($js);
503 if ($this->
ctrl->isAsynch()) {
504 $html = $this->
ui->renderer()->renderAsync($modal);
506 $html = $this->
ui->renderer()->render($modal);
508 return $a_output .
"<div class='il-copg-mob-fullscreen-modal'>" . $html .
"</div>";
515 if (self::$modal_show_signal !==
"") {
516 $onload_code[] =
"il.COPagePres.setFullscreenModalShowSignal('" . self::$modal_show_signal .
517 "', '" . self::$modal_suffix .
"');";
546 return $std_alias_item;
557 return $std_alias_item;
560 public function checkInstanceEditing():
bool 566 if ($std_alias_item->hasAnyPropertiesSet()) {
571 if ($full_alias_item->hasAnyPropertiesSet()) {
581 if (is_object($mob)) {
582 $usages = $mob->getUsages();
583 $other_usages = array_filter($usages,
function ($usage) use ($page) {
584 return ($usage[
"type"] != $page->getParentType() .
":pg" || $usage[
"id"] != $page->getId());
586 if (count($other_usages) > 0) {
599 int $delete_lower_than_nr
603 $mob_usage_repo = $DIC->mediaObjects()
611 $parent_type .
":pg",
613 $delete_lower_than_nr,
618 $parent_type .
":pg",
620 $delete_lower_than_nr,
624 foreach ($mob_ids as $mob_id) {
626 $log->
debug(
"...check deletion of mob $mob_id. Usages: " . count($usages));
627 if (count($usages) == 0) {
630 $log->
debug(
"Deleting Mob ID: " . $mob_id);
setType(string $a_type)
Set Type.
static getLogger(string $a_component_id)
Get component logger.
set_attribute($name, $value)
debug(string $a_message, array $a_context=array())
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _exists(int $id, bool $reference=false, ?string $type=null)
checks if an object exists in object_data
insertContent(ilPageContent $a_cont_obj, string $a_pos, int $a_mode=IL_INSERT_AFTER, string $a_pcid="", bool $remove_placeholder=true)
insert a content node before/after a sibling or as first child of a parent
Class ilPageObject Handles PageObjects of ILIAS Learning Modules (see ILIAS DTD)
createPageContentNode(bool $a_set_this_node=true)
Create page content node (always use this method first when adding a new element) ...
static getLocalMaphilightPath()
Get local path of maphilight file.
static _lookupType(int $id, bool $reference=false)