ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilPCInteractiveImage.php
Go to the documentation of this file.
1 <?php
2 
25 {
26  public const AREA = "Area";
27  public const MARKER = "Marker";
28  protected \ILIAS\MediaObjects\Thumbs\ThumbsManager $thumbs;
29  protected \ILIAS\COPage\Xsl\XslManager $xsl;
30  protected DOMNode $mal_node;
32  protected \ILIAS\DI\UIServices $ui;
33  protected \ILIAS\COPage\Html\TransformUtil $htmlTransform;
34  protected \ILIAS\COPage\PC\InteractiveImage\IIMManager $manager;
35 
38  protected ilLanguage $lng;
39  public ?DOMNode $iim_node;
40 
41  public function init(): void
42  {
43  global $DIC;
44 
45  $this->lng = $DIC->language();
46  $this->setType("iim");
47  $this->manager = $DIC->copage()->internal()->domain()->pc()->interactiveImage();
48  $this->htmlTransform = $DIC->copage()->internal()->domain()->htmlTransformUtil();
49  $this->ui = $DIC->copage()->internal()->gui()->ui();
50  $this->xsl = $DIC->copage()->internal()->domain()->xsl();
51  $this->thumbs = $DIC->mediaObjects()->internal()->domain()->thumbs();
52  }
53 
54  public function readMediaObject(int $a_mob_id = 0): void
55  {
56  if ($a_mob_id > 0) {
57  $mob = new ilObjMediaObject($a_mob_id);
58  $this->setMediaObject($mob);
59  }
60  }
61 
62  public function setDomNode(DOMNode $dom_node): void
63  {
64  parent::setDomNode($dom_node); // this is the PageContent node
65  $this->iim_node = $dom_node->firstChild;
66  if (isset($this->iim_node)) {
67  $this->med_alias_node = $this->iim_node->firstChild;
68  }
69  if (isset($this->med_alias_node)) {
70  $id = $this->med_alias_node->getAttribute("OriginId");
72  if ($this->object->getTypeForObjId($mob_id) == "mob") {
73  $this->setMediaObject(new ilObjMediaObject($mob_id));
74  }
75  }
76  $this->std_alias_item = new ilMediaAliasItem(
77  $this->getDomDoc(),
78  $this->readHierId(),
79  "Standard",
80  $this->readPCId(),
81  "InteractiveImage"
82  );
83  }
84 
85  public function setMediaObject(ilObjMediaObject $a_mediaobject): void
86  {
87  $this->mediaobject = $a_mediaobject;
88  }
89 
90  public function getMediaObject(): ilObjMediaObject
91  {
92  return $this->mediaobject;
93  }
94 
95  public function createMediaObject(): void
96  {
97  $this->setMediaObject(new ilObjMediaObject());
98  }
99 
100  public function create(): void
101  {
102  $this->createPageContentNode();
103  }
104 
106  {
107  return $this->getMediaObject()->getMediaItem("Standard");
108  }
109 
111  {
112  return $this->std_alias_item;
113  }
114 
115  public function getBaseThumbnailTarget(): string
116  {
117  return $this->thumbs->getThumbSrc($this->getMediaObject()->getId());
118  }
119 
120  public function createAlias(
121  ilPageObject $a_pg_obj,
122  string $a_hier_id,
123  string $a_pc_id = ""
124  ): void {
125  $this->setDomNode($this->dom_doc->createElement("PageContent"));
126  $a_pg_obj->insertContent($this, $a_hier_id, IL_INSERT_AFTER, $a_pc_id);
127  $this->iim_node = $this->dom_doc->createElement("InteractiveImage");
128  $this->iim_node = $this->getDomNode()->appendChild($this->iim_node);
129  $this->mal_node = $this->dom_doc->createElement("MediaAlias");
130  $this->mal_node = $this->iim_node->appendChild($this->mal_node);
131  $this->mal_node->setAttribute("OriginId", "il__mob_" . $this->getMediaObject()->getId());
132 
133  // standard view
134  $item_node = $this->dom_doc->createElement("MediaAliasItem");
135  $item_node = $this->iim_node->appendChild($item_node);
136  $item_node->setAttribute("Purpose", "Standard");
137  $media_item = $this->getMediaObject()->getMediaItem("Standard");
138 
139  $layout_node = $this->dom_doc->createElement("Layout");
140  $layout_node = $item_node->appendChild($layout_node);
141  $layout_node->setAttribute("HorizontalAlign", "Left");
142 
143  // caption
144  if ($media_item->getCaption() != "") {
145  $cap_node = $this->dom_doc->createElement("Caption");
146  $cap_node = $item_node->appendChild($cap_node);
147  $cap_node->setAttribute("Align", "bottom");
148  $this->dom_util->setContent($cap_node, $media_item->getCaption());
149  }
150 
151  // text representation
152  if ($media_item->getTextRepresentation() != "") {
153  $tr_node = $this->dom_doc->createElement("TextRepresentation");
154  $tr_node = $item_node->appendChild($tr_node);
155  $this->dom_util->setContent($tr_node, $media_item->getTextRepresentation());
156  }
157  }
158 
159  public function dumpXML(): string
160  {
161  $xml = $this->dom_util->dump($this->getDomNode());
162  return $xml;
163  }
164 
165 
169 
173  public function addContentPopup(?string $title = null): void
174  {
175  $lng = $this->lng;
176 
177  if ($title === null) {
178  $title = $lng->txt("cont_new_popup");
179  }
180  $max = 0;
181  $popups = $this->getPopups();
182  foreach ($popups as $p) {
183  $max = max($max, (int) $p["nr"]);
184  }
185 
186  $new_item = $this->dom_doc->createElement("ContentPopup");
187  $new_item->setAttribute("Title", $title);
188  $new_item->setAttribute("Nr", $max + 1);
189  $new_item = $this->iim_node->appendChild($new_item);
190  }
191 
195  public function getPopups(): array
196  {
197  $titles = array();
198  $k = 0;
199  foreach ($this->iim_node->childNodes as $c) {
200  if ($c->nodeName == "ContentPopup") {
201  $pc_id = $c->getAttribute("PCID");
202  $hier_id = $c->getAttribute("HierId");
203  $title = $c->getAttribute("Title");
204  $nr = $c->getAttribute("Nr");
205 
206  $titles[] = array("title" => $title,
207  "nr" => $nr,
208  "pc_id" => $pc_id,
209  "hier_id" => $hier_id
210  );
211  $k++;
212  }
213  }
214  return $titles;
215  }
216 
220  public function savePopups(array $a_popups): void
221  {
222  foreach ($this->iim_node->childNodes as $c) {
223  if ($c->nodeName == "ContentPopup") {
224  $pc_id = $c->getAttribute("PCID");
225  $hier_id = $c->getAttribute("HierId");
226  $k = $hier_id . ":" . $pc_id;
227  $c->setAttribute("Title", $a_popups[$k]);
228  }
229  }
230  }
231 
235  public function deletePopup(
236  string $a_hier_id,
237  string $a_pc_id
238  ): void {
239  foreach ($this->iim_node->childNodes as $c) {
240  if ($c->nodeName === "ContentPopup") {
241  if ($a_pc_id == $c->getAttribute("PCID") &&
242  $a_hier_id == $c->getAttribute("HierId")) {
243  $c->parentNode->removeChild($c);
244  }
245  }
246  }
247  }
248 
249  public function saveContentPopupTitle(string $nr, string $title): void
250  {
251  foreach ($this->iim_node->childNodes as $c) {
252  if ($c->nodeName === "ContentPopup") {
253  if ($nr === $c->getAttribute("Nr")) {
254  $c->setAttribute("Title", $title);
255  }
256  }
257  }
258  }
259 
260  public function deletePopupByNr(
261  string $nr
262  ): void {
263  foreach ($this->iim_node->childNodes as $c) {
264  if ($c->nodeName === "ContentPopup") {
265  if ($nr === $c->getAttribute("Nr")) {
266  $c->parentNode->removeChild($c);
267  }
268  }
269  }
270  $tr_nodes = $this->getTriggerNodes($this->hier_id, $this->getPCId());
271  foreach ($tr_nodes as $tr_node) {
272  if ($tr_node->getAttribute("PopupNr") === $nr) {
273  $tr_node->removeAttribute("PopupNr");
274  }
275  }
276  }
277 
281 
282  protected function setMapAreaProperties(
283  ilMediaAliasItem $a_alias_item,
284  string $a_shape_type,
285  string $a_coords,
286  string $a_title,
287  string $a_id
288  ) {
289  $link = array(
290  "LinkType" => IL_EXT_LINK,
291  "Href" => ilUtil::stripSlashes("#")
292  );
293 
294  $a_alias_item->deleteMapAreaById($a_id);
295  $a_alias_item->addMapArea(
296  $a_shape_type,
297  $a_coords,
298  ilUtil::stripSlashes($a_title),
299  $link,
300  $a_id
301  );
302  }
303 
307  public function addTriggerArea(
308  ilMediaAliasItem $a_alias_item,
309  string $a_shape_type,
310  string $a_coords,
311  string $a_title
312  ): void {
313  $max = 0;
314  $triggers = $this->getTriggers();
315  foreach ($triggers as $t) {
316  $max = max($max, (int) $t["Nr"]);
317  }
318 
319  $this->setMapAreaProperties(
320  $a_alias_item,
321  $a_shape_type,
322  $a_coords,
323  ilUtil::stripSlashes($a_title),
324  (string) ($max + 1)
325  );
326 
327  $attributes = array("Type" => self::AREA,
328  "Title" => ilUtil::stripSlashes($a_title),
329  "Nr" => $max + 1,
330  "OverlayX" => "0",
331  "OverlayY" => "0",
332  "Overlay" => "",
333  "PopupNr" => "",
334  "PopupX" => "0",
335  "PopupY" => "0",
336  "PopupWidth" => "150",
337  "PopupHeight" => "200"
338  );
339  $ma_node = $this->dom_util->addElementToList(
340  $this->iim_node,
341  "Trigger",
342  array("ContentPopup"),
343  "",
344  $attributes
345  );
346  }
347 
351  public function addTriggerMarker(): void
352  {
353  $lng = $this->lng;
354 
355  $max = 0;
356  $triggers = $this->getTriggers();
357  foreach ($triggers as $t) {
358  $max = max($max, (int) $t["Nr"]);
359  }
360 
361  $attributes = array("Type" => self::MARKER,
362  "Title" => $lng->txt("cont_new_marker"),
363  "Nr" => $max + 1,
364  "OverlayX" => "0",
365  "OverlayY" => "0",
366  "MarkerX" => "0",
367  "MarkerY" => "0",
368  "PopupNr" => "",
369  "PopupX" => "0",
370  "PopupY" => "0",
371  "PopupWidth" => "150",
372  "PopupHeight" => "200"
373  );
374  $ma_node = $this->dom_util->addElementToList(
375  $this->iim_node,
376  "Trigger",
377  array("ContentPopup"),
378  "",
379  $attributes
380  );
381  }
382 
383  public function getTriggerNodes(
384  string $a_hier_id,
385  string $a_pc_id = ""
386  ): DOMNodeList {
387  if ($a_pc_id != "") {
388  $path = "//PageContent[@PCID = '" . $a_pc_id . "']/InteractiveImage/Trigger";
389  return $this->dom_util->path($this->dom_doc, $path);
390  }
391 
392  $path = "//PageContent[@HierId = '" . $a_hier_id . "']/InteractiveImage/Trigger";
393  return $this->dom_util->path($this->dom_doc, $path);
394  }
395 
396  public function getTriggers(): array
397  {
398  $tr_nodes = $this->getTriggerNodes($this->hier_id, $this->getPCId());
399  $trigger_arr = array();
400  foreach ($tr_nodes as $tr_node) {
401  $childs = $tr_node->childNodes;
402  $trigger_arr[] = array(
403  "Nr" => $tr_node->getAttribute("Nr"),
404  "Type" => $tr_node->getAttribute("Type"),
405  "Title" => $tr_node->getAttribute("Title"),
406  "OverlayX" => $tr_node->getAttribute("OverlayX"),
407  "OverlayY" => $tr_node->getAttribute("OverlayY"),
408  "MarkerX" => $tr_node->getAttribute("MarkerX"),
409  "MarkerY" => $tr_node->getAttribute("MarkerY"),
410  "Overlay" => $tr_node->getAttribute("Overlay"),
411  "PopupNr" => $tr_node->getAttribute("PopupNr"),
412  "PopupX" => $tr_node->getAttribute("PopupX"),
413  "PopupY" => $tr_node->getAttribute("PopupY"),
414  "PopupWidth" => $tr_node->getAttribute("PopupWidth"),
415  "PopupHeight" => $tr_node->getAttribute("PopupHeight"),
416  "PopupPosition" => $tr_node->getAttribute("PopupPosition"),
417  "PopupSize" => $tr_node->getAttribute("PopupSize")
418  );
419  }
420 
421  return $trigger_arr;
422  }
423 
427  public function deleteTrigger(
428  ilMediaAliasItem $a_alias_item,
429  int $a_nr
430  ): void {
431  foreach ($this->iim_node->childNodes as $c) {
432  if ($c->nodeName === "Trigger") {
433  if ($a_nr === (int) $c->getAttribute("Nr")) {
434  $c->parentNode->removeChild($c);
435  }
436  }
437  }
438  $a_alias_item->deleteMapAreaById($a_nr);
439  }
440 
445  public function setTriggerOverlays(
446  array $a_ovs
447  ): void {
448  $tr_nodes = $this->getTriggerNodes($this->hier_id, $this->getPCId());
449  foreach ($tr_nodes as $tr_node) {
450  if (isset($a_ovs["" . $tr_node->getAttribute("Nr")])) {
451  $tr_node->setAttribute(
452  "Overlay",
453  $a_ovs["" . $tr_node->getAttribute("Nr")]
454  );
455  }
456  }
457  }
458 
459  public function deleteOverlay(string $file): void
460  {
461  $file = str_replace("..", "", ilUtil::stripSlashes($file));
462  $this->getMediaObject()
463  ->removeAdditionalFile("overlays/" . $file);
464  $tr_nodes = $this->getTriggerNodes($this->hier_id, $this->getPCId());
465  for ($i = 0; $i < count($tr_nodes); $i++) {
466  $tr_node = $tr_nodes[$i];
467  if ($tr_node->getAttribute("Overlay") === $file) {
468  $tr_node->removeAttribute("Overlay");
469  }
470  }
471  }
472 
477  public function setTriggerOverlayPositions(
478  array $a_pos
479  ): void {
480  $tr_nodes = $this->getTriggerNodes($this->hier_id, $this->getPCId());
481  for ($i = 0; $i < count($tr_nodes); $i++) {
482  $tr_node = $tr_nodes[$i];
483  if (isset($a_pos["" . $tr_node->getAttribute("Nr")])) {
484  $pos = explode(",", $a_pos["" . $tr_node->getAttribute("Nr")]);
485  $tr_node->setAttribute("OverlayX", (int) $pos[0]);
486  $tr_node->setAttribute("OverlayY", (int) $pos[1]);
487  }
488  }
489  }
490 
495  public function setTriggerMarkerPositions(
496  array $a_pos
497  ): void {
498  $tr_nodes = $this->getTriggerNodes($this->hier_id, $this->getPCId());
499  foreach ($tr_nodes as $tr_node) {
500  if ($tr_node->getAttribute("Type") == self::MARKER) {
501  if (isset($a_pos["" . $tr_node->getAttribute("Nr")])) {
502  $pos = explode(",", $a_pos["" . $tr_node->getAttribute("Nr")]);
503  $tr_node->setAttribute("MarkerX", (int) $pos[0]);
504  $tr_node->setAttribute("MarkerY", (int) $pos[1]);
505  }
506  }
507  }
508  }
509 
514  public function setTriggerPopupPositions(
515  array $a_pos
516  ): void {
517  $tr_nodes = $this->getTriggerNodes($this->hier_id, $this->getPCId());
518  foreach ($tr_nodes as $tr_node) {
519  if (isset($a_pos["" . $tr_node->getAttribute("Nr")])) {
520  $pos = explode(",", $a_pos["" . $tr_node->getAttribute("Nr")]);
521  $tr_node->setAttribute("PopupX", (int) $pos[0]);
522  $tr_node->setAttribute("PopupY", (int) $pos[1]);
523  }
524  }
525  }
526 
531  public function setTriggerPopupSize(
532  array $a_size
533  ): void {
534  $tr_nodes = $this->getTriggerNodes($this->hier_id, $this->getPCId());
535  foreach ($tr_nodes as $tr_node) {
536  if (isset($a_size["" . $tr_node->getAttribute("Nr")])) {
537  $size = explode(",", $a_size["" . $tr_node->getAttribute("Nr")]);
538  $tr_node->setAttribute("PopupWidth", (int) $size[0]);
539  $tr_node->setAttribute("PopupHeight", (int) $size[1]);
540  }
541  }
542  }
543 
548  public function setTriggerPopups(
549  array $a_pops
550  ): void {
551  $tr_nodes = $this->getTriggerNodes($this->hier_id, $this->getPCId());
552  foreach ($tr_nodes as $tr_node) {
553  if (isset($a_pops[(string) $tr_node->getAttribute("Nr")])) {
554  $pop = $a_pops[(string) $tr_node->getAttribute("Nr")];
555  $tr_node->setAttribute("PopupNr", $pop);
556  }
557  }
558  }
559 
564  public function setTriggerTitles(
565  array $a_titles
566  ): void {
567  $tr_nodes = $this->getTriggerNodes($this->hier_id, $this->getPCId());
568  foreach ($tr_nodes as $tr_node) {
569  if (isset($a_titles[(string) $tr_node->getAttribute("Nr")])) {
570  $tr_node->setAttribute(
571  "Title",
572  $a_titles[(string) $tr_node->getAttribute("Nr")]
573  );
574  $this->setExtLinkTitle(
575  $tr_node->getAttribute("Nr"),
576  $a_titles[(string) $tr_node->getAttribute("Nr")]
577  );
578  }
579  }
580  }
581 
582  public function setExtLinkTitle(
583  int $a_nr,
584  string $a_title
585  ): void {
586  if ($this->getPCId() != "") {
587  $path = "//PageContent[@PCID = '" . $this->getPCId() . "']/InteractiveImage/MediaAliasItem/MapArea[@Id='" . $a_nr . "']/ExtLink";
588  $res = $this->dom_util->path($this->dom_doc, $path);
589  if (count($res) > 0) {
590  $this->dom_util->setContent($res->item(0), $a_title);
591  }
592  return;
593  }
594 
595  $path = "//PageContent[@HierId = '" . $this->hier_id . "']/InteractiveImage/MediaAliasItem/MapArea[@Id='" . $a_nr . "']/ExtLink";
596  $res = $this->dom_util->path($this->dom_doc, $path);
597  if (count($res) > 0) {
598  $this->dom_util->setContent($res->item(0), $a_title);
599  }
600  }
601 
602  public static function handleCopiedContent(
603  DOMDocument $a_domdoc,
604  bool $a_self_ass = true,
605  bool $a_clone_mobs = false,
606  int $new_parent_id = 0,
607  int $obj_copy_id = 0
608  ): void {
609  global $DIC;
610 
611  $dom_util = $DIC->copage()->internal()->domain()->domUtil();
612  $path = "//InteractiveImage/MediaAlias";
613  $nodes = $dom_util->path($a_domdoc, $path);
614  foreach ($nodes as $node) {
615  $or_id = $node->getAttribute("OriginId");
616  $inst_id = ilInternalLink::_extractInstOfTarget($or_id);
617  $mob_id = ilInternalLink::_extractObjIdOfTarget($or_id);
618  if (!($inst_id > 0)) {
619  if ($mob_id > 0) {
620  $media_object = new ilObjMediaObject($mob_id);
621  $new_mob = $media_object->duplicate();
622  $node->setAttribute("OriginId", "il__mob_" . $new_mob->getId());
623  }
624  }
625  }
626  }
627 
628  public function createFromMobId(
629  \ilPageObject $page,
630  int $mob_id,
631  string $hier_id,
632  string $pc_id
633  ): void {
634  $this->setMediaObject(new ilObjMediaObject($mob_id));
635  $this->createAlias($page, $hier_id, $pc_id);
636  }
637 
638  public function getIIMModel(): ?stdClass
639  {
640  $alias_item = $this->getStandardAliasItem();
641  $model = new \stdClass();
642  $model->triggers = $this->getTriggers();
643  $model->popups = $this->getPopups();
644  $model->media_item = $alias_item->getModel();
645  $model->overlays = $this->manager->getOverlays($this->getMediaObject());
646  return $model;
647  }
648 
649  protected function getTriggerNode(string $nr)
650  {
651  $tr_nodes = $this->getTriggerNodes($this->hier_id, $this->getPCId());
652  for ($i = 0; $i < count($tr_nodes); $i++) {
653  $tr_node = $tr_nodes[$i];
654  if ($tr_node->getAttribute("Nr") == $nr) {
655  return $tr_node;
656  }
657  }
658  return null;
659  }
660 
661  public function setTriggerProperties(string $nr, string $title, string $shape_type, string $coords): void
662  {
663  $tr_node = $this->getTriggerNode($nr);
664 
665  if ($shape_type === "Marker") {
666 
667  // set marker properties
668  $tr_node->setAttribute("Type", "Marker");
669  $tr_node->setAttribute(
670  "Title",
671  $title
672  );
673  $coord_parts = explode(",", $coords);
674  $tr_node->setAttribute("MarkerX", ($coord_parts[0] ?? "0"));
675  $tr_node->setAttribute("MarkerY", ($coord_parts[1] ?? "0"));
676 
677  // remove area
678  $path = "//PageContent[@HierId = '" . $this->hier_id . "']/InteractiveImage/MediaAliasItem/MapArea[@Id='" . $nr . "']";
679  $nodes = $this->dom_util->path($this->dom_doc, $path);
680  if (count($nodes) > 0) {
681  $child = $nodes->item(0);
682  $child->parentNode->removeChild($child);
683  }
684  return;
685  }
686 
687  if ($tr_node) {
688  $tr_node->setAttribute("Type", "Area");
689  $tr_node->removeAttribute("MarkerX");
690  $tr_node->removeAttribute("MarkerY");
691 
692  $this->setMapAreaProperties(
693  $this->getStandardAliasItem(),
694  $shape_type,
695  $coords,
696  ilUtil::stripSlashes($title),
697  $nr
698  );
699  } else {
700  $this->addTriggerArea(
701  $this->getStandardAliasItem(),
702  $shape_type,
703  $coords,
704  $title
705  );
706  }
707  }
708 
709  public function setTriggerOverlay(string $nr, string $overlay, string $coords): void
710  {
711  $tr_node = $this->getTriggerNode($nr);
712  if ($tr_node) {
713  $c = explode(",", $coords);
714  $x = (int) ($c[0] ?? 0);
715  $y = (int) ($c[1] ?? 0);
716  $tr_node->setAttribute("Overlay", $overlay);
717  $tr_node->setAttribute("OverlayX", $x);
718  $tr_node->setAttribute("OverlayY", $y);
719  }
720  }
721 
722  public function setTriggerPopup(string $nr, string $popup, string $position, string $size): void
723  {
724  $tr_node = $this->getTriggerNode($nr);
725  if ($tr_node) {
726  $tr_node->setAttribute("PopupNr", $popup);
727  $tr_node->setAttribute("PopupPosition", $position);
728  $tr_node->setAttribute("PopupSize", $size);
729  }
730  }
731 
732  public function modifyPageContentPostXsl(
733  string $a_output,
734  string $a_mode,
735  bool $a_abstract_only = false
736  ): string {
737  $keep_original = false;
738  if (in_array($a_mode, [ilPageObjectGUI::EDIT], true)) {
739  $keep_original = true;
740  }
741  $trans = $this->htmlTransform;
742  while (!is_null($params = $trans->getPlaceholderParams($a_output, "InteractiveImage;PopupStart"))) {
743  $params = $trans->getPlaceholderParams($a_output, "InteractiveImage;PopupStart");
744  $par_page = $params[2] ?? 0;
745  $par_pop_nr = $params[4] ?? 0;
746  $inner = $trans->getInnerContentOfPlaceholders(
747  $a_output,
748  "InteractiveImage;PopupStart",
749  "InteractiveImage;PopupEnd"
750  );
751  if ($keep_original) {
752  $new_inner = $inner;
753  } else {
754  $pop = $this->ui->factory()->popover()->standard(
755  $this->ui->factory()->legacy()->content("#####popovercontent#####")
756  );
757  $signal_id = $pop->getShowSignal()->getId();
758  //$new_inner = $this->ui->renderer()->render($pop);
759  $new_inner = "#####popovercontent#####";
760  // we need a position relative around the absolute inner div, to make 100% the current available space
761  $new_inner = str_replace(
762  "#####popovercontent#####",
763  "<div style='position:relative'><div class='copg-iim-popup copg-iim-popup-md' style='display:none;' data-copg-cont-type='iim-popup' data-signal-id='$signal_id' data-copg-page='$par_page' data-copg-popup-nr='$par_pop_nr'>" . $inner . "</div></div>",
764  $new_inner
765  );
766  }
767  $html = $trans->replaceInnerContentAndPlaceholders(
768  $a_output,
769  "InteractiveImage;PopupStart",
770  "InteractiveImage;PopupEnd",
771  $new_inner
772  );
773  if (is_null($html)) {
774  break;
775  } else {
776  $a_output = $html;
777  }
778  }
779  return $a_output .
780 '<script type="module" src="./components/ILIAS/COPage/PC/InteractiveImage/js/presentation/src/presentation.js"></script>';
781  }
782 
783  public function getPopupDummy(): string
784  {
785  $content = <<<EOT
786 <div style='position:relative'><div class='copg-iim-popup copg-iim-popup-md' data-copg-cont-type='iim-popup'>
787 <div class="ilc_iim_ContentPopup" data-copg-iim-data-type="popup"><div class="ilc_Paragraph ilc_text_block_Standard">
788 ###content###
789 </div></div></div></div>
790 
791 EOT;
792  return $content;
793  }
794 
795  public function getBackgroundImage(): string
796  {
797  $mob = $this->getMediaObject();
798 
799  // output image map
800  $xml = "<dummy>";
801  $xml .= $mob->getXML(IL_MODE_ALIAS);
802  $xml .= $mob->getXML(IL_MODE_OUTPUT);
803  $xml .= "</dummy>";
804  $wb_path = \ilFileUtils::getWebspaceDir("output") . "/";
805  $params = array(
806  'media_mode' => 'enable',
807  'pg_frame' => "",
808  'enlarge_path' => \ilUtil::getImagePath("enlarge.svg"),
809  'webspace_path' => $wb_path);
810 
811  $output = $this->xsl->process($xml, $params);
812  return $output;
813  }
814 
815 }
static getWebspaceDir(string $mode="filesystem")
get webspace directory
setType(string $a_type)
Set Type.
$res
Definition: ltiservices.php:66
deletePopup(string $a_hier_id, string $a_pc_id)
Delete popup.
setTriggerPopupPositions(array $a_pos)
Set trigger popup position.
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
setTriggerOverlays(array $a_ovs)
Set trigger overlays.
if(! $DIC->user() ->getId()||!ilLTIConsumerAccess::hasCustomProviderCreationAccess()) $params
Definition: ltiregstart.php:31
static stripSlashes(string $a_str, bool $a_strip_html=true, string $a_allow="")
createAlias(ilPageObject $a_pg_obj, string $a_hier_id, string $a_pc_id="")
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
$c
Definition: deliver.php:25
Content object of ilPageObject (see ILIAS DTD).
$path
Definition: ltiservices.php:29
ILIAS COPage Html TransformUtil $htmlTransform
setMapAreaProperties(ilMediaAliasItem $a_alias_item, string $a_shape_type, string $a_coords, string $a_title, string $a_id)
setTriggerTitles(array $a_titles)
Set trigger titles.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
addTriggerMarker()
Add a new trigger marker.
setTriggerPopup(string $nr, string $popup, string $position, string $size)
setTriggerPopupSize(array $a_size)
Set trigger popup size.
deleteTrigger(ilMediaAliasItem $a_alias_item, int $a_nr)
Delete Trigger.
getPopups()
Get popup captions.
setMediaObject(ilObjMediaObject $a_mediaobject)
savePopups(array $a_popups)
Save popups.
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
setTriggerProperties(string $nr, string $title, string $shape_type, string $coords)
ILIAS COPage Xsl XslManager $xsl
Class ilPageObject Handles PageObjects of ILIAS Learning Modules (see ILIAS DTD)
addMapArea(string $a_shape_type, string $a_coords, string $a_title, array $a_link, string $a_id="")
Add a new area to the map.
global $DIC
Definition: shib_login.php:22
Class ilMediaItem Media Item, component of a media object (file or reference)
static getImagePath(string $image_name, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
setTriggerOverlay(string $nr, string $overlay, string $coords)
saveContentPopupTitle(string $nr, string $title)
const IL_INSERT_AFTER
createPageContentNode(bool $a_set_this_node=true)
Create page content node (always use this method first when adding a new element) ...
const IL_MODE_ALIAS
static handleCopiedContent(DOMDocument $a_domdoc, bool $a_self_ass=true, bool $a_clone_mobs=false, int $new_parent_id=0, int $obj_copy_id=0)
const IL_EXT_LINK
createFromMobId(\ilPageObject $page, int $mob_id, string $hier_id, string $pc_id)
setExtLinkTitle(int $a_nr, string $a_title)
ILIAS MediaObjects Thumbs ThumbsManager $thumbs
addContentPopup(?string $title=null)
Add a tab.
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23
setTriggerPopups(array $a_pops)
Set trigger popups.
getTriggerNodes(string $a_hier_id, string $a_pc_id="")
setTriggerMarkerPositions(array $a_pos)
Set trigger marker position.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ILIAS COPage Dom DomUtil $dom_util
const IL_MODE_OUTPUT
setTriggerOverlayPositions(array $a_pos)
Set trigger overlay position.
ILIAS COPage PC InteractiveImage IIMManager $manager
addTriggerArea(ilMediaAliasItem $a_alias_item, string $a_shape_type, string $a_coords, string $a_title)
Add a new trigger.
deleteMapAreaById(string $a_id)
Delete map areas by id.
modifyPageContentPostXsl(string $a_output, string $a_mode, bool $a_abstract_only=false)