4 require_once(
"./Services/COPage/classes/class.ilPageContent.php");
47 $this->
user = $DIC->user();
49 $this->
ui = $DIC->ui();
50 $this->lng = $DIC->language();
68 parent::setNode($a_node);
69 $this->mob_node = $a_node->first_child();
85 $this->hier_id = $a_hier_id;
95 $this->mediaobject = $a_mediaobject;
116 public function create(&$a_pg_obj, $a_hier_id)
127 public function createAlias(&$a_pg_obj, $a_hier_id, $a_pc_id =
"")
129 $this->node = $this->dom->create_element(
"PageContent");
130 $a_pg_obj->insertContent($this, $a_hier_id,
IL_INSERT_AFTER, $a_pc_id);
131 $this->mob_node = $this->dom->create_element(
"MediaObject");
132 $this->mob_node = $this->node->append_child($this->mob_node);
133 $this->mal_node = $this->dom->create_element(
"MediaAlias");
134 $this->mal_node = $this->mob_node->append_child($this->mal_node);
135 $this->mal_node->set_attribute(
"OriginId",
"il__mob_" . $this->
getMediaObject()->getId());
138 $item_node = $this->dom->create_element(
"MediaAliasItem");
139 $item_node = $this->mob_node->append_child($item_node);
140 $item_node->set_attribute(
"Purpose",
"Standard");
143 $layout_node = $this->dom->create_element(
"Layout");
144 $layout_node = $item_node->append_child($layout_node);
145 if ($media_item->getWidth() > 0) {
148 if ($media_item->getHeight() > 0) {
151 $layout_node->set_attribute(
"HorizontalAlign",
"Left");
154 if ($media_item->getCaption() !=
"") {
155 $cap_node = $this->dom->create_element(
"Caption");
156 $cap_node = $item_node->append_child($cap_node);
157 $cap_node->set_attribute(
"Align",
"bottom");
158 $cap_node->set_content($media_item->getCaption());
162 if ($media_item->getTextRepresentation() !=
"") {
163 $tr_node = $this->dom->create_element(
"TextRepresentation");
164 $tr_node = $item_node->append_child($tr_node);
165 $tr_node->set_content($media_item->getTextRepresentation());
168 $pars = $media_item->getParameters();
169 foreach ($pars as $par => $val) {
170 $par_node = $this->dom->create_element(
"Parameter");
171 $par_node = $item_node->append_child($par_node);
172 $par_node->set_attribute(
"Name", $par);
173 $par_node->set_attribute(
"Value", $val);
177 $fullscreen_item = $this->
getMediaObject()->getMediaItem(
"Fullscreen");
178 if (is_object($fullscreen_item)) {
179 $item_node = $this->dom->create_element(
"MediaAliasItem");
180 $item_node = $this->mob_node->append_child($item_node);
181 $item_node->set_attribute(
"Purpose",
"Fullscreen");
184 $layout_node = $this->dom->create_element(
"Layout");
185 $layout_node = $item_node->append_child($layout_node);
186 if ($fullscreen_item->getWidth() > 0) {
187 $layout_node->set_attribute(
"Width", $fullscreen_item->getWidth());
189 if ($fullscreen_item->getHeight() > 0) {
190 $layout_node->set_attribute(
"Height", $fullscreen_item->getHeight());
194 if ($fullscreen_item->getCaption() !=
"") {
195 $cap_node = $this->dom->create_element(
"Caption");
196 $cap_node = $item_node->append_child($cap_node);
197 $cap_node->set_attribute(
"Align",
"bottom");
198 $cap_node->set_content($fullscreen_item->getCaption());
202 if ($fullscreen_item->getTextRepresentation() !=
"") {
203 $tr_node = $this->dom->create_element(
"TextRepresentation");
204 $tr_node = $item_node->append_child($tr_node);
205 $tr_node->set_content($fullscreen_item->getTextRepresentation());
208 $pars = $fullscreen_item->getParameters();
209 foreach ($pars as $par => $val) {
210 $par_node = $this->dom->create_element(
"Parameter");
211 $par_node = $item_node->append_child($par_node);
212 $par_node->set_attribute(
"Name", $par);
213 $par_node->set_attribute(
"Value", $val);
225 if (is_object($this->mob_node)) {
226 $this->mal_node = $this->mob_node->first_child();
227 if (is_object($this->mal_node) && $this->mal_node->node_name() ==
"MediaAlias") {
228 $this->mal_node->set_attribute(
"OriginId",
"il__mob_" . $this->
getMediaObject()->getId());
238 $xml = $this->dom->dump_node($this->node);
249 if (is_object($this->mob_node)) {
250 $mal_node = $this->mob_node->first_child();
251 if (is_object($mal_node)) {
252 if (!empty($a_class)) {
253 $mal_node->set_attribute(
"Class", $a_class);
255 if ($mal_node->has_attribute(
"Class")) {
256 $mal_node->remove_attribute(
"Class");
270 if (is_object($this->mob_node)) {
271 $mal_node = $this->mob_node->first_child();
272 if (is_object($mal_node)) {
273 $class = $mal_node->get_attribute(
"Class");
285 return array(
"pc_mob");
296 public static function afterPageUpdate($a_page, DOMDocument $a_domdoc, $a_xml, $a_creation)
298 if (!$a_page->getImportMode()) {
299 include_once(
"./Services/MediaObjects/classes/class.ilObjMediaObject.php");
301 $a_page->getParentType() .
":pg",
304 $a_page->getLanguage()
306 self::saveMobUsage($a_page, $a_domdoc);
307 foreach ($mob_ids as $mob) {
310 $usages = $mob_obj->getUsages(
false);
311 if (count($usages) == 0) {
326 include_once(
"./Services/MediaObjects/classes/class.ilObjMediaObject.php");
328 $a_page->getParentType() .
":pg",
331 $a_page->getLanguage()
335 $a_page->getParentType() .
":pg",
338 $a_page->getLanguage()
341 foreach ($mob_ids as $mob) {
344 $usages = $mob_obj->getUsages(
false);
345 if (count($usages) == 0) {
362 self::saveMobUsage($a_page, $a_old_domdoc, $a_old_nr);
375 $xpath =
new DOMXPath($a_domdoc);
376 $nodes = $xpath->query(
'//MediaAlias');
377 foreach ($nodes as
$node) {
378 $id_arr = explode(
"_", $node->getAttribute(
"OriginId"));
379 $mob_id = $id_arr[count($id_arr) - 1];
380 if ($mob_id > 0 && $id_arr[1] ==
"") {
381 $usages[$mob_id] =
true;
386 $xpath =
new DOMXPath($a_domdoc);
387 $nodes = $xpath->query(
'//MediaObject/MetaData/General/Identifier');
388 foreach ($nodes as $node) {
389 $mob_entry = $node->getAttribute(
"Entry");
390 $mob_arr = explode(
"_", $mob_entry);
391 $mob_id = $mob_arr[count($mob_arr) - 1];
392 if ($mob_id > 0 && $mob_arr[1] ==
"") {
393 $usages[$mob_id] =
true;
398 $xpath =
new DOMXPath($a_domdoc);
399 $nodes = $xpath->query(
"//IntLink[@Type='MediaObject']");
400 foreach ($nodes as $node) {
401 $mob_target = $node->getAttribute(
"Target");
402 $mob_arr = explode(
"_", $mob_target);
406 $mob_id = $mob_arr[count($mob_arr) - 1];
407 if ($mob_id > 0 && $mob_arr[1] ==
"") {
408 $usages[$mob_id] =
true;
412 include_once(
"./Services/MediaObjects/classes/class.ilObjMediaObject.php");
414 $a_page->getParentType() .
":pg",
417 $a_page->getLanguage()
419 foreach ($usages as $mob_id => $val) {
424 $a_page->getParentType() .
":pg",
427 $a_page->getLanguage()
442 if ($a_mode ==
"offline") {
446 $page->getParentType() .
":pg",
451 foreach ($mob_ids as $mob_id) {
453 $srts = $mob->getSrtFiles();
454 foreach ($srts as $srt) {
455 if (
$ilUser->getLanguage() == $srt[
"language"]) {
457 $a_html = str_replace(
"[[[[[mobsubtitle;il__mob_" . $mob->getId() .
"_Standard]]]]]", $srt_content, $a_html);
463 if ($a_abstract_only) {
469 $suffix =
"-" . $page->getParentType() .
"-" . $page->getId();
470 $modal = $this->
ui->factory()->modal()->roundtrip(
471 $this->lng->txt(
"cont_fullscreen"),
472 $this->
ui->factory()->legacy(
"<iframe class='il-copg-mob-fullscreen' id='il-copg-mob-fullscreen" . $suffix .
"'></iframe>")
474 $show_signal = $modal->getShowSignal();
476 return $a_html .
"<div class='il-copg-mob-fullscreen-modal'>" . $this->
ui->renderer()->render($modal) .
"</div><script>$(function () { il.COPagePres.setFullscreenModalShowSignal('" .
477 $show_signal .
"', '" . $suffix .
"'); });</script>";
511 return $std_alias_item;
525 return $std_alias_item;
531 public function checkInstanceEditing() :
bool 537 if ($std_alias_item->hasAnyPropertiesSet()) {
542 if ($full_alias_item->hasAnyPropertiesSet()) {
552 if (is_object($mob)) {
553 $usages = $mob->getUsages();
554 $other_usages = array_filter($usages,
function ($usage) use ($page) {
555 return ($usage[
"type"] != $page->getParentType() .
":pg" || $usage[
"id"] != $page->getId());
557 if (count($other_usages) > 0) {
static getCssFilePaths()
Get css file paths.
static _exists($a_id, $a_reference=false, $a_type=null)
checks if an object exists in object_data
setType($a_type)
Set Type.
static getJsFilePaths()
Get js file paths.
getHierId()
Get hierarchical id.
static _lookupType($a_id, $a_reference=false)
lookup object type
createPageContentNode($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.