26 public const AREA =
"Area";
28 protected \ILIAS\MediaObjects\Thumbs\ThumbsManager
$thumbs;
29 protected \ILIAS\COPage\Xsl\XslManager
$xsl;
32 protected \ILIAS\DI\UIServices
$ui;
34 protected \ILIAS\COPage\PC\InteractiveImage\IIMManager
$manager;
41 public function init(): void
45 $this->
lng = $DIC->language();
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();
64 parent::setDomNode($dom_node);
65 $this->iim_node = $dom_node->firstChild;
66 if (isset($this->iim_node)) {
67 $this->med_alias_node = $this->iim_node->firstChild;
69 if (isset($this->med_alias_node)) {
70 $id = $this->med_alias_node->getAttribute(
"OriginId");
72 if ($this->
object->getTypeForObjId($mob_id) ==
"mob") {
87 $this->mediaobject = $a_mediaobject;
125 $this->
setDomNode($this->dom_doc->createElement(
"PageContent"));
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);
134 $item_node = $this->dom_doc->createElement(
"MediaAliasItem");
135 $item_node = $this->iim_node->appendChild($item_node);
136 $item_node->setAttribute(
"Purpose",
"Standard");
139 $layout_node = $this->dom_doc->createElement(
"Layout");
140 $layout_node = $item_node->appendChild($layout_node);
141 $layout_node->setAttribute(
"HorizontalAlign",
"Left");
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());
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());
161 $xml = $this->dom_util->dump($this->
getDomNode());
177 if ($title ===
null) {
178 $title = $lng->
txt(
"cont_new_popup");
182 foreach ($popups as $p) {
183 $max = max($max, (
int) $p[
"nr"]);
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);
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");
206 $titles[] = array(
"title" => $title,
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");
227 $c->setAttribute(
"Title", $a_popups[$k]);
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);
251 foreach ($this->iim_node->childNodes as
$c) {
252 if ($c->nodeName ===
"ContentPopup") {
253 if ($nr === $c->getAttribute(
"Nr")) {
254 $c->setAttribute(
"Title", $title);
263 foreach ($this->iim_node->childNodes as
$c) {
264 if ($c->nodeName ===
"ContentPopup") {
265 if ($nr === $c->getAttribute(
"Nr")) {
266 $c->parentNode->removeChild($c);
271 foreach ($tr_nodes as $tr_node) {
272 if ($tr_node->getAttribute(
"PopupNr") === $nr) {
273 $tr_node->removeAttribute(
"PopupNr");
284 string $a_shape_type,
309 string $a_shape_type,
315 foreach ($triggers as $t) {
316 $max = max($max, (
int) $t[
"Nr"]);
327 $attributes = array(
"Type" => self::AREA,
336 "PopupWidth" =>
"150",
337 "PopupHeight" =>
"200" 339 $ma_node = $this->dom_util->addElementToList(
342 array(
"ContentPopup"),
357 foreach ($triggers as $t) {
358 $max = max($max, (
int) $t[
"Nr"]);
361 $attributes = array(
"Type" => self::MARKER,
362 "Title" => $lng->
txt(
"cont_new_marker"),
371 "PopupWidth" =>
"150",
372 "PopupHeight" =>
"200" 374 $ma_node = $this->dom_util->addElementToList(
377 array(
"ContentPopup"),
387 if ($a_pc_id !=
"") {
388 $path =
"//PageContent[@PCID = '" . $a_pc_id .
"']/InteractiveImage/Trigger";
389 return $this->dom_util->path($this->dom_doc,
$path);
392 $path =
"//PageContent[@HierId = '" . $a_hier_id .
"']/InteractiveImage/Trigger";
393 return $this->dom_util->path($this->dom_doc,
$path);
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")
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);
449 foreach ($tr_nodes as $tr_node) {
450 if (isset($a_ovs[
"" . $tr_node->getAttribute(
"Nr")])) {
451 $tr_node->setAttribute(
453 $a_ovs[
"" . $tr_node->getAttribute(
"Nr")]
463 ->removeAdditionalFile(
"overlays/" . $file);
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");
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]);
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]);
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]);
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]);
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);
568 foreach ($tr_nodes as $tr_node) {
569 if (isset($a_titles[(
string) $tr_node->getAttribute(
"Nr")])) {
570 $tr_node->setAttribute(
572 $a_titles[(
string) $tr_node->getAttribute(
"Nr")]
575 $tr_node->getAttribute(
"Nr"),
576 $a_titles[(string) $tr_node->getAttribute(
"Nr")]
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);
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);
604 bool $a_self_ass =
true,
605 bool $a_clone_mobs =
false,
606 int $new_parent_id = 0,
611 $dom_util = $DIC->copage()->internal()->domain()->domUtil();
612 $path =
"//InteractiveImage/MediaAlias";
614 foreach ($nodes as $node) {
615 $or_id = $node->getAttribute(
"OriginId");
618 if (!($inst_id > 0)) {
621 $new_mob = $media_object->duplicate();
622 $node->setAttribute(
"OriginId",
"il__mob_" . $new_mob->getId());
641 $model = new \stdClass();
644 $model->media_item = $alias_item->getModel();
645 $model->overlays = $this->manager->getOverlays($this->
getMediaObject());
652 for ($i = 0; $i < count($tr_nodes); $i++) {
653 $tr_node = $tr_nodes[$i];
654 if ($tr_node->getAttribute(
"Nr") == $nr) {
665 if ($shape_type ===
"Marker") {
668 $tr_node->setAttribute(
"Type",
"Marker");
669 $tr_node->setAttribute(
673 $coord_parts = explode(
",", $coords);
674 $tr_node->setAttribute(
"MarkerX", ($coord_parts[0] ??
"0"));
675 $tr_node->setAttribute(
"MarkerY", ($coord_parts[1] ??
"0"));
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);
688 $tr_node->setAttribute(
"Type",
"Area");
689 $tr_node->removeAttribute(
"MarkerX");
690 $tr_node->removeAttribute(
"MarkerY");
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);
722 public function setTriggerPopup(
string $nr,
string $popup,
string $position,
string $size): void
726 $tr_node->setAttribute(
"PopupNr", $popup);
727 $tr_node->setAttribute(
"PopupPosition", $position);
728 $tr_node->setAttribute(
"PopupSize", $size);
735 bool $a_abstract_only =
false 737 $keep_original =
false;
739 $keep_original =
true;
742 while (!is_null(
$params = $trans->getPlaceholderParams($a_output,
"InteractiveImage;PopupStart"))) {
743 $params = $trans->getPlaceholderParams($a_output,
"InteractiveImage;PopupStart");
746 $inner = $trans->getInnerContentOfPlaceholders(
748 "InteractiveImage;PopupStart",
749 "InteractiveImage;PopupEnd" 751 if ($keep_original) {
754 $pop = $this->
ui->factory()->popover()->standard(
755 $this->
ui->factory()->legacy()->content(
"#####popovercontent#####")
757 $signal_id = $pop->getShowSignal()->getId();
759 $new_inner =
"#####popovercontent#####";
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>",
767 $html = $trans->replaceInnerContentAndPlaceholders(
769 "InteractiveImage;PopupStart",
770 "InteractiveImage;PopupEnd",
773 if (is_null($html)) {
780 '<script type="module" src="./components/ILIAS/COPage/PC/InteractiveImage/js/presentation/src/presentation.js"></script>';
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">
789 </div></div></div></div>
806 'media_mode' =>
'enable',
809 'webspace_path' => $wb_path);
811 $output = $this->xsl->process($xml,
$params);
static getWebspaceDir(string $mode="filesystem")
get webspace directory
getTriggerNode(string $nr)
ilMediaAliasItem $std_alias_item
setType(string $a_type)
Set Type.
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...
static _extractObjIdOfTarget(string $a_target)
Extract object id out of target.
setTriggerOverlays(array $a_ovs)
Set trigger overlays.
if(! $DIC->user() ->getId()||!ilLTIConsumerAccess::hasCustomProviderCreationAccess()) $params
static stripSlashes(string $a_str, bool $a_strip_html=true, string $a_allow="")
deleteOverlay(string $file)
createAlias(ilPageObject $a_pg_obj, string $a_hier_id, string $a_pc_id="")
setDomNode(DOMNode $dom_node)
deletePopupByNr(string $nr)
Content object of ilPageObject (see ILIAS DTD).
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.
static _extractInstOfTarget(string $a_target)
Extract installation id out of target.
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)
ilObjMediaObject $mediaobject
ILIAS COPage Xsl XslManager $xsl
Class ilPageObject Handles PageObjects of ILIAS Learning Modules (see ILIAS DTD)
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)
createPageContentNode(bool $a_set_this_node=true)
Create page content node (always use this method first when adding a new element) ...
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)
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
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
readMediaObject(int $a_mob_id=0)
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.
modifyPageContentPostXsl(string $a_output, string $a_mode, bool $a_abstract_only=false)