ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilLMPresentationGUI.php
Go to the documentation of this file.
1 <?php
2 
20 
31 {
32  protected \ILIAS\COPage\Dom\DomUtil $dom_util;
33  protected \ILIAS\COPage\Xsl\XslManager $xsl;
34  protected \ILIAS\Notes\GUIService $notes_gui;
35  protected \ILIAS\GlobalScreen\Services $global_screen;
36  protected \ILIAS\Notes\DomainService $notes;
37  protected \ILIAS\LearningModule\ReadingTime\ReadingTimeManager $reading_time_manager;
38  protected string $requested_url;
39  protected string $requested_type;
40  protected ilLMTracker $tracker;
41  protected ilTabsGUI $tabs;
43  protected ilSetting $lm_set;
45  protected bool $fill_on_load_code;
46  protected ilLMTree $lm_tree;
47  protected array $frames;
48  protected string $export_format;
49  public string $lang;
51  protected ilObjUser $user;
53  protected ilCtrl $ctrl;
56  protected ilSetting $settings;
58  protected ilTree $tree;
59  protected ilHelpGUI $help;
63  public ilLanguage $lng;
65  public bool $offline;
66  public string $offline_directory;
67  protected bool $embed_mode = false;
68  protected int $current_page_id = 0;
69  protected ?int $focus_id = 0; // focus id is set e.g. from learning objectives course, we focus on a chapter/page
70  protected bool $export_all_languages = false;
71  public bool $chapter_has_no_active_page = false;
72  public bool $deactivated_page = false;
73  protected string $requested_back_pg;
74  protected string $requested_search_string;
75  protected string $requested_focus_return;
76  protected int $requested_ref_id;
77  protected int $requested_obj_id;
78  protected string $requested_obj_type;
79  protected string $requested_transl;
80  protected string $requested_frame;
83  protected \ILIAS\DI\UIServices $ui;
85  protected array $additional_content = [];
86  protected string $requested_cmd = "";
87  protected int $requested_pg_id = 0;
88  protected string $requested_pg_type = "";
89  protected int $requested_mob_id = 0;
90  protected int $requested_notification_switch = 0;
91  protected bool $abstract = false;
93  protected \ILIAS\Style\Content\Object\ObjectFacade $content_style_domain;
94  protected \ILIAS\Style\Content\GUIService $content_style_gui;
96 
97  public function __construct(
98  string $a_export_format = "",
99  bool $a_all_languages = false,
100  string $a_export_dir = "",
101  bool $claim_repo_context = true,
102  ?array $query_params = null,
103  bool $embed_mode = false
104  ) {
105  global $DIC;
106 
107  $this->offline = ($a_export_format != "");
108  $this->export_all_languages = $a_all_languages;
109  $this->export_format = $a_export_format; // html/scorm
110  $this->offline_directory = $a_export_dir;
111 
112  $this->tabs = $DIC->tabs();
113  $this->toolbar = $DIC->toolbar();
114  $this->user = $DIC->user();
115  $this->rbacsystem = $DIC->rbac()->system();
116  $this->nav_history = $DIC["ilNavigationHistory"];
117  $this->access = $DIC->access();
118  $this->settings = $DIC->settings();
119  $this->locator = $DIC["ilLocator"];
120  $this->tree = $DIC->repositoryTree();
121  $this->help = $DIC["ilHelp"];
122  $this->global_screen = $DIC->globalScreen();
123  $this->lom_services = $DIC->learningObjectMetadata();
124 
125  $lng = $DIC->language();
126  $rbacsystem = $DIC->rbac()->system();
127  $ilCtrl = $DIC->ctrl();
128  $ilErr = $DIC["ilErr"];
129 
130  // load language vars
131  $lng->loadLanguageModule("content");
132 
133  $this->lng = $lng;
134  $this->ui = $DIC->ui();
135  $this->tpl = $DIC->ui()->mainTemplate();
136  $this->frames = array();
137  $this->ctrl = $ilCtrl;
138  $this->ctrl->saveParameter($this, array("ref_id", "transl", "focus_id", "focus_return"));
139 
140  $this->cs = $DIC->contentStyle();
141 
142  $this->initByRequest($query_params, $embed_mode);
143 
144  // check, if learning module is online
145  if (!$rbacsystem->checkAccess("write", $this->requested_ref_id)) {
146  if ($this->lm->getOfflineStatus()) {
147  $ilErr->raiseError($lng->txt("permission_denied"), $ilErr->WARNING);
148  }
149  }
150 
151  if ($claim_repo_context) {
152  $DIC->globalScreen()->tool()->context()->claim()->repository();
153  }
154 
155  if (!$ilCtrl->isAsynch()) {
156  // moved this into the if due to #0027200
157  if (!$embed_mode) {
158  if ($this->service->getPresentationStatus()->isTocNecessary()) {
159  $DIC->globalScreen()->tool()->context()->current()->addAdditionalData(
161  true
162  );
163  }
164  }
165  $DIC->globalScreen()->tool()->context()->current()->addAdditionalData(
167  true
168  );
169  }
170 
171  if ($embed_mode) {
172  $ilCtrl->setParameter($this, "embed_mode", 1);
173  $params = [
174  "obj_id" => $this->requested_obj_id,
175  "ref_id" => $this->lm->getRefId(),
176  "frame" => ""
177  ];
178  $DIC->globalScreen()->tool()->context()->current()->addAdditionalData(
180  $params
181  );
182  }
183  $this->reading_time_manager = new \ILIAS\LearningModule\ReadingTime\ReadingTimeManager();
184  $this->notes = $DIC->notes()->domain();
185  $this->xsl = $DIC->copage()->internal()->domain()->xsl();
186  $this->dom_util = $DIC->copage()->internal()->domain()->domUtil();
187  $this->notes_gui = $DIC->notes()->gui();
188  }
189 
190  public function getUnsafeGetCommands(): array
191  {
192  return [];
193  }
194 
195  public function getSafePostCommands(): array
196  {
197  return [
198  "showPrintView",
199  ];
200  }
201 
208  public function initByRequest(
209  ?array $query_params = null,
210  bool $embed_mode = false
211  ): void {
212  global $DIC;
213 
214  $this->service = new ilLMPresentationService(
215  $this->user,
216  $query_params,
217  $this->offline,
218  $this->export_all_languages,
219  $this->export_format,
220  null,
221  $embed_mode
222  );
223 
224  $post = is_null($query_params)
225  ? null
226  : [];
227 
228  $request = $DIC->learningModule()
229  ->internal()
230  ->gui()
231  ->presentation()
232  ->request(
233  $query_params,
234  $post
235  );
236 
237  $this->requested_obj_type = $request->getObjType();
238  $this->requested_ref_id = $request->getRefId();
239  $this->requested_transl = $request->getTranslation(); // handled by presentation status
240  $this->requested_obj_id = $request->getObjId(); // handled by navigation status
241  $this->requested_back_pg = $request->getBackPage();
242  $this->requested_frame = $request->getFrame();
243  $this->requested_search_string = $request->getSearchString();
244  $this->requested_focus_return = $request->getFocusReturn();
245  $this->requested_mob_id = $request->getMobId();
246  $this->requested_cmd = $request->getCmd();
247  $this->requested_pg_id = $request->getPgId();
248  $this->requested_pg_type = $request->getPgType();
249  $this->requested_notification_switch = $request->getNotificationSwitch();
250  $this->requested_type = $request->getType();
251  $this->requested_url = $request->getUrl();
252 
253  $this->lm_set = $this->service->getSettings();
254  $this->lm_gui = $this->service->getLearningModuleGUI();
255  $this->lm = $this->service->getLearningModule();
256  $this->tracker = $this->service->getTracker();
257  $this->linker = $this->service->getLinker();
258  $this->embed_mode = $embed_mode;
259  if ($request->getEmbedMode()) {
260  $this->embed_mode = true;
261  }
262 
263  // language translation
264  $this->lang = $this->service->getPresentationStatus()->getLang();
265 
266  $this->lm_tree = $this->service->getLMTree();
267  $this->focus_id = $this->service->getPresentationStatus()->getFocusId();
268  $this->ot = ilObjectTranslation::getInstance($this->lm->getId());
269  $this->content_style_gui = $this->cs->gui();
270  $this->content_style_domain = $this->cs->domain()->styleForRefId($this->lm->getRefId());
271  }
272 
274  {
275  return $this->service;
276  }
277 
278  public function injectTemplate(ilGlobalTemplateInterface $tpl): void
279  {
280  $this->tpl = $tpl;
281  }
282 
283  protected function getTracker(): ilLMTracker
284  {
285  return $this->service->getTracker();
286  }
287 
293  public function executeCommand(): void
294  {
295  $ilNavigationHistory = $this->nav_history;
296  $ilAccess = $this->access;
297  $lng = $this->lng;
298  $ilCtrl = $this->ctrl;
299  $ilUser = $this->user;
300 
301  // check read permission and parent conditions
302  // todo: replace all this by ilAccess call
303  if (!$ilAccess->checkAccess("read", "", $this->requested_ref_id) &&
304  (!(($this->ctrl->getCmd() == "infoScreen" || $this->ctrl->getNextClass() == "ilinfoscreengui")
305  && $ilAccess->checkAccess("visible", "", $this->requested_ref_id)))) {
306  throw new ilPermissionException($lng->txt("permission_denied"));
307  }
308 
309  $next_class = $this->ctrl->getNextClass($this);
310  $cmd = $this->ctrl->getCmd("layout");
311 
312  $obj_id = $this->requested_obj_id;
313  $this->ctrl->setParameter($this, "obj_id", $this->requested_obj_id);
314  $ilNavigationHistory->addItem($this->requested_ref_id, $this->ctrl->getLinkTarget($this), "lm");
315  $this->ctrl->setParameter($this, "obj_id", $obj_id);
316 
317  switch ($next_class) {
318  case "ilcommentgui":
319  $ret = $this->layout();
320  break;
321 
322  case "ilinfoscreengui":
323  $ret = $this->outputInfoScreen();
324  break;
325 
326  case "ilcommonactiondispatchergui":
328  $gui->enableCommentsSettings(false);
329  $this->ctrl->forwardCommand($gui);
330  break;
331 
332  case "illmpagegui":
333  $page_gui = $this->getLMPageGUI($this->requested_obj_id);
334  $this->basicPageGuiInit($page_gui);
335  $ret = $ilCtrl->forwardCommand($page_gui);
336  break;
337 
338  case "ilassgenfeedbackpagegui":
339  $page_gui = new ilAssGenFeedbackPageGUI($this->requested_pg_id);
340  //$this->basicPageGuiInit($page_gui);
341  $ret = $ilCtrl->forwardCommand($page_gui);
342  break;
343 
344  case "ilglossarydefpagegui":
345  // see #32198
346  //$page_gui = new ilGlossaryDefPageGUI($this->requested_obj_id);
347  $page_gui = new ilGlossaryDefPageGUI($this->requested_pg_id);
348  $this->basicPageGuiInit($page_gui);
349  $ret = $ilCtrl->forwardCommand($page_gui);
350  break;
351 
352  case "illearningprogressgui":
353  $this->initScreenHead("learning_progress");
354  $new_gui = new ilLearningProgressGUI(
356  $this->requested_ref_id,
357  $ilUser->getId()
358  );
359  $this->ctrl->forwardCommand($new_gui);
360  // this is nasty, but the LP classes do "sometimes" a printToStdout
361  // sometimes not, (here editManual does, other commands not)
362  if ($this->ctrl->getCmd() !== "editManual") {
363  $this->tpl->printToStdout();
364  }
365  break;
366 
367  case "ilratinggui":
368  $rating_gui = new ilRatingGUI();
369  $rating_gui->setObject($this->lm->getId(), "lm", $this->requested_obj_id, "lm");
370  $this->ctrl->forwardCommand($rating_gui);
371  break;
372 
373  default:
374  if ($this->requested_notification_switch > 0) {
375  switch ($this->requested_notification_switch) {
376  case 1:
379  $this->user->getId(),
380  $this->lm->getId(),
381  false
382  );
383  break;
384 
385  case 2:
388  $this->user->getId(),
389  $this->lm->getId(),
390  true
391  );
392  break;
393 
394  case 3:
397  $this->user->getId(),
398  $this->getCurrentPageId(),
399  false
400  );
401  break;
402 
403  case 4:
406  $this->user->getId(),
407  $this->getCurrentPageId(),
408  true
409  );
410  break;
411  }
412  $ilCtrl->redirect($this, "layout");
413  }
414  $ret = $this->$cmd();
415  break;
416  }
417  }
418 
422  public function offlineMode(): bool
423  {
424  return $this->offline;
425  }
426 
427  public function getExportFormat(): string
428  {
429  return $this->export_format;
430  }
431 
435  public function nop(): void
436  {
437  }
438 
439  public function attrib2arr(?DOMNamedNodeMap $a_attributes): array
440  {
441  $attr = array();
442  if (!is_null($a_attributes)) {
443  foreach ($a_attributes as $attribute) {
444  $attr[$attribute->name] = $attribute->value;
445  }
446  }
447  return $attr;
448  }
449 
453  public function getCurrentFrameSet(): array
454  {
455  return $this->frames;
456  }
457 
461  public function determineLayout(): string
462  {
463  return "standard";
464  }
465 
469  public function resume(): void
470  {
471  $this->layout();
472  }
473 
474  public function layout(
475  string $a_xml = "main.xml",
476  bool $doShow = true
477  ): string {
478  $content = "";
479  $tpl = $this->tpl;
480  $ilUser = $this->user;
481  $layout = $this->determineLayout();
482 
483  // xmldocfile is deprecated! Use domxml_open_file instead.
484  // But since using relative pathes with domxml under windows don't work,
485  // we need another solution:
486  $xmlfile = file_get_contents(ILIAS_ABSOLUTE_PATH . "/components/ILIAS/LearningModule/layouts/lm/" . $layout . "/" . $a_xml);
487 
488  $error = null;
489  $doc = $this->dom_util->docFromString($xmlfile, $error);
490  $this->layout_doc = $doc;
491 
492  // get current frame node
493  $path = (empty($this->requested_frame) || ($this->requested_frame == "_blank"))
494  ? "/ilLayout/ilFrame[1]"
495  : "//ilFrame[@name='" . $this->requested_frame . "']";
496  $nodes = $this->dom_util->path($doc, $path);
497  if (count($nodes) != 1) {
498  throw new ilLMPresentationException("ilLMPresentation: XML File invalid. Found " . count($nodes) . " nodes for " .
499  " path " . $path . " in " . $layout . "/" . $a_xml . ". LM Layout is " . $this->lm->getLayout());
500  }
501  $node = $nodes->item(0);
502 
503  // ProcessFrameset
504  // node is frameset, if it has cols or rows attribute
505  $attributes = $this->attrib2arr($node->attributes);
506 
507  $this->frames = array();
508 
509  // ProcessContentTag
510  if ((empty($attributes["template"]) || !empty($this->requested_obj_type))
511  && ($this->requested_frame != "_blank" || $this->requested_obj_type != "MediaObject")) {
512  // we got a variable content frame (can display different
513  // object types (PageObject, MediaObject, GlossarItem)
514  // and contains elements for them)
515 
516  // determine object type
517  if (empty($this->requested_obj_type)) {
518  $obj_type = "PageObject";
519  } else {
520  $obj_type = $this->requested_obj_type;
521  }
522 
523  // get object specific node
524  $found = false;
525  foreach ($node->childNodes as $child) {
526  if ($child->nodeName == $obj_type) {
527  $found = true;
528  $attributes = $this->attrib2arr($child->attributes);
529  $node = $child;
530  //echo "<br>2node:".$node->node_name();
531  break;
532  }
533  }
534  if (!$found) {
535  throw new ilLMPresentationException("ilLMPresentation: No template specified for frame '" .
536  $this->requested_frame . "' and object type '" . $obj_type . "'.");
537  }
538  }
539 
540  // set style sheets
541  if (!$this->offlineMode()) {
542  $this->tpl->setVariable("LOCATION_STYLESHEET", ilUtil::getStyleSheetLocation());
543  } else {
544  $style_name = $ilUser->getPref("style") . ".css";
545  $this->tpl->setVariable("LOCATION_STYLESHEET", "./style/" . $style_name);
546  }
547 
548  // to make e.g. advanced seletions lists work:
549  // $GLOBALS["tpl"] = $this->tpl;
550 
551  foreach ($node->childNodes as $child) {
552  $child_attr = $this->attrib2arr($child->attributes);
553 
554  switch ($child->nodeName) {
555  case "ilPage":
556  $this->renderPageTitle();
557  $this->setHeader();
558  $this->addHeaderAction();
559  $content = $this->getContent();
560  $this->ilLMMenu();
561  $content .= $this->ilLMNotes();
562  $additional = $this->ui->renderer()->render($this->additional_content);
563  $this->tpl->setContent($content . $additional);
564  break;
565 
566  case "ilGlossary":
567  $this->ilGlossary();
568  break;
569 
570  case "ilLMNavigation":
571  // @todo 6.0
572  // $this->ilLMNavigation();
573  break;
574 
575  case "ilMedia":
576  $this->media();
577  break;
578 
579  case "ilLocator":
580  $this->ilLocator();
581  break;
582 
583  case "ilJavaScript":
584  $this->ilJavaScript(
585  $child_attr["inline"],
586  $child_attr["file"],
587  $child_attr["location"]
588  );
589  break;
590 
591  case "ilLMMenu":
592  //$this->ilLMMenu();
593  break;
594 
595  case "ilLMHead":
596  // @todo 6.0
597  // $this->ilLMHead();
598  break;
599 
600  case "ilLMSubMenu":
601  $this->ilLMSubMenu();
602  break;
603 
604  case "ilLMNotes":
605  $this->ilLMNotes();
606  break;
607  }
608  }
609 
610  $this->addResourceFiles();
611 
612  if ($doShow) {
613  $tpl->printToStdout();
614  } else {
615  $content = $tpl->printToString();
616  }
617 
618  return ($content);
619  }
620 
621  protected function addResourceFiles(): void
622  {
623  iljQueryUtil::initjQuery($this->tpl);
624  //iljQueryUtil::initjQueryUI($this->tpl);
625 
626  if (!$this->offlineMode()) {
629 
630  $this->tpl->addJavaScript("assets/js/LearningModule.js");
631 
632  // handle initial content
633  if ($this->requested_frame == "") {
634  $store = new ilSessionIStorage("lm");
635  $last_frame_url = $store->get("cf_" . $this->lm->getId());
636  if ($last_frame_url != "") {
637  $this->tpl->addOnLoadCode("il.LearningModule.setLastFrameUrl('" . $last_frame_url . "', 'center_bottom');");
638  }
639 
640  $this->tpl->addOnLoadCode("il.LearningModule.setSaveUrl('" .
641  $this->ctrl->getLinkTarget($this, "saveFrameUrl", "", false, false) . "');
642  il.LearningModule.openInitFrames();
643  ");
644 
645  $this->tpl->addOnLoadCode("il.LearningModule.setTocRefreshUrl('" .
646  $this->ctrl->getLinkTarget($this, "refreshToc", "", false, false) . "');
647  ");
648  }
649 
650  // from main menu
651  // $this->tpl->addJavascript("assets/js/Basic.js");
652  ilYuiUtil::initConnection($this->tpl);
653  }
654  }
655 
656  public function saveFrameUrl(): void
657  {
658  $store = new ilSessionIStorage("lm");
659  $store->set("cf_" . $this->lm->getId(), $this->requested_url);
660  }
661 
662  public function fullscreen(): string
663  {
664  return $this->media();
665  }
666 
667  public function media(): string
668  {
669  $this->tpl = new ilGlobalTemplate("tpl.fullscreen.html", true, true, "components/ILIAS/LearningModule");
670 
671  // set style sheets
672  $this->setContentStyles();
673  $this->setSystemStyle();
674 
675  $this->ilMedia();
676  if (!$this->offlineMode()) {
677  $this->tpl->printToStdout();
678  } else {
679  return $this->tpl->printToString();
680  }
681  return "";
682  }
683 
684  public function glossary(): string
685  {
686  $this->tpl = new ilGlobalTemplate("tpl.glossary_term_output.html", true, true, "components/ILIAS/LearningModule");
687  $this->renderPageTitle();
688 
689  iljQueryUtil::initjQuery($this->tpl);
690  //iljQueryUtil::initjQueryUI($this->tpl);
691  ilAccordionGUI::addJavaScript($this->tpl);
692  ilAccordionGUI::addCss($this->tpl);
693 
694  // set style sheets
695  $this->setContentStyles();
696  $this->setSystemStyle();
697 
698  $this->ilGlossary();
699 
700  $js = $this->global_screen->layout()->meta()->getJs();
701  foreach ($js->getItemsInOrderOfDelivery() as $item) {
702  $this->tpl->addJavaScript($item->getContent());
703  }
704 
705  if (!$this->offlineMode()) {
706  $this->tpl->printToStdout();
707  } else {
708  return $this->tpl->printToString();
709  }
710 
711  return "";
712  }
713 
714  public function page(): string
715  {
716  $ilUser = $this->user;
717  $this->tpl = new ilGlobalTemplate("tpl.page_fullscreen.html", true, true, "components/ILIAS/LearningModule");
718  $GLOBALS["tpl"] = $this->tpl;
719  $this->renderPageTitle();
720 
721  $this->setContentStyles();
722 
723  // set style sheets
724  if (!$this->offlineMode()) {
725  $this->tpl->setVariable("LOCATION_STYLESHEET", ilUtil::getStyleSheetLocation());
726  } else {
727  $style_name = $ilUser->getPref("style") . ".css";
728  $this->tpl->setVariable("LOCATION_STYLESHEET", "./style/" . $style_name);
729  }
730 
731  $this->tpl->setVariable("PAGE_CONTENT", $this->getPageContent());
732  if (!$this->offlineMode()) {
733  $this->tpl->printToStdout();
734  } else {
735  return $this->tpl->get();
736  }
737  return "";
738  }
739 
743  public function ilTOC(): ilLMTOCExplorerGUI
744  {
745  $fac = new ilLMTOCExplorerGUIFactory();
746  $exp = $fac->getExplorer($this->service, "ilTOC");
747  $exp->handleCommand();
748  return $exp;
749  }
750 
751  public function getLMPresentationTitle(): string
752  {
753  return $this->service->getPresentationStatus()->getLMPresentationTitle();
754  }
755 
756  public function ilLMMenu(): void
757  {
758  $this->renderTabs("content", $this->getCurrentPageId());
759  }
760 
761  public function setHeader(): void
762  {
763  $this->tpl->setTitle($this->getLMPresentationTitle());
764  $this->tpl->setTitleIcon(ilUtil::getImagePath("standard/icon_lm.svg"));
765  }
766 
770  public function ilLMSubMenu(): void
771  {
772  $rbacsystem = $this->rbacsystem;
773  if ($this->abstract) {
774  return;
775  }
776 
777 
778  $tpl_menu = new ilTemplate("tpl.lm_sub_menu.html", true, true, "components/ILIAS/LearningModule");
779 
780  $pg_id = $this->getCurrentPageId();
781  if ($pg_id == 0) {
782  return;
783  }
784 
785  // edit learning module
786  if (!$this->offlineMode()) {
787  if ($rbacsystem->checkAccess("write", $this->requested_ref_id)) {
788  $tpl_menu->setCurrentBlock("edit_page");
789  $page_id = $this->getCurrentPageId();
790  $tpl_menu->setVariable(
791  "EDIT_LINK",
792  ILIAS_HTTP_PATH . "/ilias.php?baseClass=ilLMEditorGUI&ref_id=" . $this->requested_ref_id .
793  "&obj_id=" . $page_id . "&to_page=1"
794  );
795  $tpl_menu->setVariable("EDIT_TXT", $this->lng->txt("edit_page"));
796  $tpl_menu->parseCurrentBlock();
797  }
798 
799  $page_id = $this->getCurrentPageId();
800 
801  // permanent link
802  $this->tpl->setPermanentLink("pg", null, $page_id . "_" . $this->lm->getRefId());
803  }
804 
805  $this->tpl->setVariable("SUBMENU", $tpl_menu->get());
806  }
807 
808  public function redrawHeaderAction(): void
809  {
810  echo $this->getHeaderAction(true);
811  exit;
812  }
813 
814  public function addHeaderAction(): void
815  {
816  //$this->tpl->setVariable("HEAD_ACTION", $this->getHeaderAction());
817  $this->tpl->setHeaderActionMenu($this->getHeaderAction());
818  }
819 
820  public function getHeaderAction(
821  bool $a_redraw = false
822  ): string {
823  if ($this->offline) {
824  return "";
825  }
826  $ilAccess = $this->access;
828  $tpl = $this->tpl;
829 
830  $lm_id = $this->lm->getId();
831  $pg_id = $this->getCurrentPageId();
832 
833  $this->lng->loadLanguageModule("content");
834 
835  $dispatcher = new ilCommonActionDispatcherGUI(
837  $ilAccess,
838  $this->lm->getType(),
839  $this->lm->getRefId(),
840  $this->lm->getId()
841  );
842  $dispatcher->setSubObject("pg", $this->getCurrentPageId());
843 
844  $this->ctrl->setParameter($this, "embed_mode", (int) $this->embed_mode);
845  $this->ctrl->setParameterByClass("ilcommentgui", "embed_mode", (int) $this->embed_mode);
846  $this->ctrl->setParameterByClass("iltagginggui", "embed_mode", (int) $this->embed_mode);
848  $this->ctrl->getLinkTarget($this, "redrawHeaderAction", "", true),
849  "",
850  $this->ctrl->getLinkTargetByClass(
851  array("ilcommonactiondispatchergui", "iltagginggui"),
852  "",
853  "",
854  true,
855  false
856  ),
857  $this->tpl
858  );
859 
860  $lg = $dispatcher->initHeaderAction();
861  if (!$ilSetting->get("disable_notes")) {
862  $lg->enableNotes(true);
863  if (!$this->embed_mode) {
864  $lg->enableComments($this->lm->publicNotes(), false);
865  }
866  }
867 
868  if ($this->lm->hasRating() && !$this->offlineMode()) {
869  $lg->enableRating(
870  true,
871  $this->lng->txt("lm_rating"),
872  false,
873  array("ilcommonactiondispatchergui", "ilratinggui"),
874  true
875  );
876  }
877 
878  // notification
879  if ($this->user->getId() != ANONYMOUS_USER_ID && !$this->embed_mode) {
880  if (ilNotification::hasNotification(ilNotification::TYPE_LM, $this->user->getId(), $lm_id)) {
881  $this->ctrl->setParameter($this, "ntf", 1);
882  if (ilNotification::hasOptOut($lm_id)) {
883  $lg->addCustomCommand($this->ctrl->getLinkTarget($this), "cont_notification_deactivate_lm");
884  }
885 
886  $lg->addHeaderIcon(
887  "not_icon",
888  ilUtil::getImagePath("object/notification_on.svg"),
889  $this->lng->txt("cont_notification_activated")
890  );
891  } else {
892  $this->ctrl->setParameter($this, "ntf", 2);
893  $lg->addCustomCommand($this->ctrl->getLinkTarget($this), "cont_notification_activate_lm");
894 
895  if (ilNotification::hasNotification(ilNotification::TYPE_LM_PAGE, $this->user->getId(), $pg_id)) {
896  $this->ctrl->setParameter($this, "ntf", 3);
897  $lg->addCustomCommand($this->ctrl->getLinkTarget($this), "cont_notification_deactivate_page");
898 
899  $lg->addHeaderIcon(
900  "not_icon",
901  ilUtil::getImagePath("object/notification_on.svg"),
902  $this->lng->txt("cont_page_notification_activated")
903  );
904  } else {
905  $this->ctrl->setParameter($this, "ntf", 4);
906  $lg->addCustomCommand($this->ctrl->getLinkTarget($this), "cont_notification_activate_page");
907 
908  $lg->addHeaderIcon(
909  "not_icon",
910  ilUtil::getImagePath("object/notification_off.svg"),
911  $this->lng->txt("cont_notification_deactivated")
912  );
913  }
914  }
915  $this->ctrl->setParameter($this, "ntf", "");
916  }
917 
918  if (!$this->offline) {
919  if ($ilAccess->checkAccess("write", "", $this->requested_ref_id)) {
920  if ($this->getCurrentPageId() <= 0) {
921  $link = $this->ctrl->getLinkTargetByClass(["ilLMEditorGUI", "ilobjlearningmodulegui"], "chapters");
922  } else {
923  $link = ILIAS_HTTP_PATH . "/ilias.php?baseClass=ilLMEditorGUI&ref_id=" . $this->requested_ref_id .
924  "&obj_id=" . $this->getCurrentPageId() . "&to_page=1";
925  }
926  $lg->addCustomCommand($link, "edit_page");
927  }
928  }
929 
930  if (!$a_redraw) {
931  return $lg->getHeaderAction($this->tpl);
932  } else {
933  // we need to add onload code manually (rating, comments, etc.)
934  return $lg->getHeaderAction() .
935  $tpl->getOnLoadCodeForAsynch();
936  }
937  }
938 
942  public function ilLMNotes(): string
943  {
944  $ilAccess = $this->access;
946 
947  // no notes in offline (export) mode
948  if ($this->offlineMode()) {
949  return "";
950  }
951 
952  // now output comments
953 
954  if ($ilSetting->get("disable_comments")) {
955  return "";
956  }
957  if (!$this->lm->publicNotes()) {
958  return "";
959  }
960 
961  $next_class = $this->ctrl->getNextClass($this);
962 
963  $pg_id = $this->getCurrentPageId();
964 
965  if ($pg_id == 0) {
966  return "";
967  }
968  $notes_gui = $this->notes_gui->getCommentsGUI($this->lm->getId(), $this->getCurrentPageId(), "pg");
969  $notes_gui->setUseObjectTitleHeader(false);
970 
971  if ($ilAccess->checkAccess("write", "", $this->requested_ref_id) &&
972  $ilSetting->get("comments_del_tutor", '1')) {
973  $notes_gui->enablePublicNotesDeletion(true);
974  }
975 
976  $this->ctrl->setParameter($this, "frame", $this->requested_frame);
977  $this->ctrl->setParameter($this, "obj_id", $this->requested_obj_id);
978 
979  $notes_gui->enablePrivateNotes();
980  if ($this->lm->publicNotes()) {
981  $notes_gui->enablePublicNotes();
982  }
983 
984  $callback = array($this, "observeNoteAction");
985  $notes_gui->addObserver($callback);
986 
987  if ($next_class == "ilcommentgui") {
988  $html = $this->ctrl->forwardCommand($notes_gui);
989  } else {
990  $html = $notes_gui->getListHTML();
991  }
992  return $html;
993  }
994 
995  public function ilLocator(): void
996  {
997  global $DIC;
998  $ltiview = $DIC["lti"];
999  $ilLocator = $this->locator;
1000 
1001  if (empty($this->requested_obj_id)) {
1002  $a_id = $this->lm_tree->getRootId();
1003  } else {
1004  $a_id = $this->requested_obj_id;
1005  }
1006 
1007  if (!$this->lm->cleanFrames()) {
1008  $frame_param = $this->requested_frame;
1009  $frame_target = "";
1010  } elseif (!$this->offlineMode()) {
1011  $frame_param = "";
1012  $frame_target = ilFrameTargetInfo::_getFrame("MainContent");
1013  } else {
1014  $frame_param = "";
1015  $frame_target = "_top";
1016  }
1017 
1018  if (!$this->offlineMode()) {
1019  // LTI
1020  if ($ltiview->isActive()) {
1021  // Do nothing, its complicated...
1022  } else {
1023  $ilLocator->addRepositoryItems();
1024  }
1025  } else {
1026  $ilLocator->setOffline(true);
1027  }
1028 
1029  if ($this->lm_tree->isInTree($a_id)) {
1030  $path = $this->lm_tree->getPathFull($a_id);
1031 
1032  foreach ($path as $key => $row) {
1033  if ($row["type"] != "pg") {
1034  if ($row["child"] != $this->lm_tree->getRootId()) {
1035  $ilLocator->addItem(
1038  $row["child"],
1040  $this->lm->isActiveNumbering(),
1041  (bool) $this->lm_set->get("time_scheduled_page_activation"),
1042  false,
1043  0,
1044  $this->lang
1045  ),
1046  50,
1047  true
1048  ),
1049  $this->linker->getLink("layout", $row["child"], $frame_param, "StructureObject"),
1050  $frame_target
1051  );
1052  } else {
1053  $ilLocator->addItem(
1055  $this->linker->getLink("layout", 0, $frame_param),
1056  $frame_target,
1058  );
1059  }
1060  }
1061  }
1062  } else { // lonely page
1063  $ilLocator->addItem(
1064  $this->getLMPresentationTitle(),
1065  $this->linker->getLink("layout", 0, $this->requested_frame)
1066  );
1067 
1068  $lm_obj = ilLMObjectFactory::getInstance($this->lm, $a_id);
1069 
1070  $ilLocator->addItem(
1071  $lm_obj->getTitle(),
1072  $this->linker->getLink("layout", $a_id, $frame_param),
1073  $frame_target
1074  );
1075  }
1076 
1077  $this->tpl->setLocator();
1078  }
1079 
1083  public function getCurrentPageId(): ?int
1084  {
1085  return $this->service->getNavigationStatus()->getCurrentPage();
1086  }
1087 
1091  protected function setContentStyles(): void
1092  {
1093  // content style
1094  $this->content_style_gui->addCss(
1095  $this->tpl,
1096  $this->lm->getRefId()
1097  );
1098  $this->tpl->addCss(ilObjStyleSheet::getSyntaxStylePath());
1099  }
1100 
1104  protected function setSystemStyle(): void
1105  {
1106  $this->tpl->addCss(ilUtil::getStyleSheetLocation());
1107  }
1108 
1109  public function getContent(
1110  bool $skip_nav = false
1111  ): string {
1112  $this->fill_on_load_code = true;
1113  $this->setContentStyles();
1114 
1115  $tpl = new ilTemplate("tpl.lm_content.html", true, true, "components/ILIAS/LearningModule/Presentation");
1116 
1117  if (!$skip_nav) {
1118  $navigation_renderer = new ilLMNavigationRendererGUI(
1119  $this->service,
1120  $this,
1121  $this->lng,
1122  $this->user,
1123  $this->tpl,
1124  $this->requested_obj_id,
1125  $this->requested_back_pg,
1126  $this->requested_frame,
1127  $this->toolbar,
1128  $this->ui
1129  );
1130 
1131  $navigation_renderer->renderTop();
1132  //$tpl->setVariable("TOP_NAVIGATION", $navigation_renderer->renderTop());
1133  //$tpl->setVariable("BOTTOM_NAVIGATION", $navigation_renderer->renderBottom());
1134  }
1135  $tpl->setVariable("PAGE_CONTENT", $this->getPageContent());
1136  $tpl->setVariable("RATING", $this->renderRating());
1137 
1138  return $tpl->get();
1139  }
1140 
1141  protected function getPageContent(): string
1142  {
1143  $content_renderer = new ilLMContentRendererGUI(
1144  $this->service,
1145  $this,
1146  $this->lng,
1147  $this->ctrl,
1148  $this->access,
1149  $this->user,
1150  $this->help,
1151  $this->requested_obj_id
1152  );
1153 
1154  return $content_renderer->render();
1155  }
1156 
1157  protected function renderRating(): string
1158  {
1159  // rating
1160  $rating = "";
1161  if ($this->lm->hasRatingPages() && !$this->offlineMode()) {
1162  $rating_gui = new ilRatingGUI();
1163  $rating_gui->setObject($this->lm->getId(), "lm", $this->getCurrentPageId(), "lm");
1164  $rating_gui->setYourRatingText($this->lng->txt("lm_rate_page"));
1165 
1166  $this->ctrl->setParameter($this, "pg_id", $this->getCurrentPageId());
1167  $this->tpl->addOnLoadCode("il.LearningModule.setRatingUrl('" .
1168  $this->ctrl->getLinkTarget($this, "updatePageRating", "", true, false) .
1169  "')");
1170  $this->ctrl->setParameter($this, "pg_id", "");
1171 
1172  $rating = '<div id="ilrtrpg" style="text-align:right">' .
1173  $rating_gui->getHTML(true, true, "il.LearningModule.saveRating(%rating%);") .
1174  "</div>";
1175  }
1176  return $rating;
1177  }
1178 
1179  public function updatePageRating(): void
1180  {
1181  $ilUser = $this->user;
1182  $pg_id = $this->service->getRequest()->getPgId();
1183  if (!$this->ctrl->isAsynch() || !$pg_id) {
1184  exit();
1185  }
1186 
1187  $rating = $this->service->getRequest()->getRating();
1188  if ($rating) {
1190  $this->lm->getId(),
1191  "lm",
1192  $pg_id,
1193  "lm",
1194  $ilUser->getId(),
1195  $rating
1196  );
1197  } else {
1199  $this->lm->getId(),
1200  "lm",
1201  $pg_id,
1202  "lm",
1203  $ilUser->getId()
1204  );
1205  }
1206 
1207  $rating = new ilRatingGUI();
1208  $rating->setObject($this->lm->getId(), "lm", $pg_id, "lm");
1209  $rating->setYourRatingText($this->lng->txt("lm_rate_page"));
1210 
1211  echo $rating->getHTML(true, true, "il.LearningModule.saveRating(%rating%);");
1212 
1213  echo $this->tpl->getOnLoadCodeForAsynch();
1214  exit();
1215  }
1216 
1217  public function basicPageGuiInit(\ilPageObjectGUI $a_page_gui): void
1218  {
1219  $a_page_gui->setStyleId(
1220  $this->content_style_domain->getEffectiveStyleId()
1221  );
1222  if (!$this->offlineMode()) {
1223  $a_page_gui->setOutputMode("presentation");
1224  $this->fill_on_load_code = true;
1225  } else {
1226  $a_page_gui->setOutputMode("offline");
1227  $a_page_gui->setOfflineDirectory($this->getOfflineDirectory());
1228  $this->fill_on_load_code = false;
1229  }
1230  if (!$this->offlineMode()) {
1231  $this->ctrl->setParameter($this, "obj_id", $this->getCurrentPageId()); // see #22403
1232  }
1233  $a_page_gui->setFileDownloadLink($this->linker->getLink("downloadFile"));
1234  $a_page_gui->setSourcecodeDownloadScript($this->linker->getLink(
1235  "sourcecodeDownload",
1236  $this->getCurrentPageId()
1237  ));
1238  if (!$this->offlineMode()) {
1239  $this->ctrl->setParameter($this, "obj_id", $this->requested_obj_id);
1240  }
1241  $a_page_gui->setFullscreenLink($this->linker->getLink("fullscreen"));
1242  $a_page_gui->setSourcecodeDownloadScript($this->linker->getLink("download_paragraph"));
1243  }
1244 
1245  public function ilGlossary(): void
1246  {
1247  $ilCtrl = $this->ctrl;
1248 
1249  $term_gui = new ilGlossaryTermGUI($this->requested_obj_id);
1250 
1251  // content style
1252  $this->setContentStyles();
1253 
1254  $term_gui->setPageLinker($this->linker);
1255 
1256  $term_gui->setOfflineDirectory($this->getOfflineDirectory());
1257  if (!$this->offlineMode()) {
1258  $ilCtrl->setParameter($this, "pg_type", "glo");
1259  }
1260  $term_gui->output($this->offlineMode(), $this->tpl);
1261 
1262  if (!$this->offlineMode()) {
1263  $ilCtrl->setParameter($this, "pg_type", "");
1264  }
1265  }
1266 
1267  public function ilMedia(): void
1268  {
1269  $pg_frame = "";
1270  $this->setContentStyles();
1271 
1272  $this->renderPageTitle();
1273 
1274  $this->tpl->setCurrentBlock("ilMedia");
1275  $med_links = ilMediaItem::_getMapAreasIntLinks($this->requested_mob_id);
1276  $link_xml = $this->linker->getLinkXML($med_links);
1277 
1278  $media_obj = new ilObjMediaObject($this->requested_mob_id);
1279  if (!empty($this->requested_pg_id)) {
1280  $pg_obj = $this->getLMPage($this->requested_pg_id, $this->requested_pg_type);
1281  $pg_obj->buildDom();
1282 
1283  $xml = "<dummy>";
1284  // todo: we get always the first alias now (problem if mob is used multiple
1285  // times in page)
1286  $xml .= $pg_obj->getMediaAliasElement($this->requested_mob_id);
1287  } else {
1288  $xml = "<dummy>";
1289  // todo: we get always the first alias now (problem if mob is used multiple
1290  // times in page)
1291  $xml .= $media_obj->getXML(IL_MODE_ALIAS);
1292  }
1293  $xml .= $media_obj->getXML(IL_MODE_OUTPUT);
1294  $xml .= $link_xml;
1295  $xml .= "</dummy>";
1296 
1297  if (!$this->offlineMode()) {
1298  $wb_path = ilFileUtils::getWebspaceDir("output") . "/";
1299  } else {
1300  $wb_path = "";
1301  }
1302 
1303  $mode = ($this->requested_cmd == "fullscreen")
1304  ? "fullscreen"
1305  : "media";
1306  $enlarge_path = ilUtil::getImagePath("media/enlarge.svg", false, "output", $this->offlineMode());
1307  $fullscreen_link =
1308  $this->linker->getLink("fullscreen");
1309  $params = array('mode' => $mode,
1310  'enlarge_path' => $enlarge_path,
1311  'link_params' => "ref_id=" . $this->lm->getRefId(),
1312  'fullscreen_link' => $fullscreen_link,
1313  'enable_html_mob' => ilObjMediaObject::isTypeAllowed("html") ? "y" : "n",
1314  'ref_id' => $this->lm->getRefId(),
1315  'pg_frame' => $pg_frame,
1316  'webspace_path' => $wb_path
1317  );
1318  $output = $this->xsl->process($xml, $params);
1319 
1320  // unmask user html
1321  $this->tpl->setVariable("MEDIA_CONTENT", $output);
1322 
1323  // add js
1325  }
1326 
1327  public function ilJavaScript(
1328  string $a_inline = "",
1329  string $a_file = "",
1330  string $a_location = ""
1331  ): void {
1332  if ($a_inline != "") {
1333  $js_tpl = new ilTemplate($a_inline, true, false, $a_location);
1334  $js = $js_tpl->get();
1335  $this->tpl->setVariable("INLINE_JS", $js);
1336  }
1337  }
1338 
1344  public function infoScreen(): void
1345  {
1346  $this->ctrl->redirectByClass(ilInfoScreenGUI::class, "showSummary");
1347  }
1348 
1352  public function showInfoScreen(): void
1353  {
1354  $this->outputInfoScreen();
1355  }
1356 
1357  protected function initScreenHead(
1358  string $a_active_tab = "info"
1359  ): void {
1360  $ilAccess = $this->access;
1361  $ilLocator = $this->locator;
1362 
1363  $this->renderPageTitle();
1364 
1365  $this->tpl->loadStandardTemplate();
1366  $this->tpl->setTitle($this->getLMPresentationTitle());
1367  $this->tpl->setTitleIcon(ilUtil::getImagePath("standard/icon_lm.svg"));
1368 
1369  $this->renderTabs($a_active_tab, 0);
1370 
1371  // Full locator, if read permission is given
1372  if ($ilAccess->checkAccess("read", "", $this->requested_ref_id)) {
1373  $this->ilLocator();
1374  } else {
1375  $ilLocator->addRepositoryItems();
1376  $this->tpl->setLocator();
1377  }
1378  }
1379 
1383  public function outputInfoScreen(): string
1384  {
1385  $ilAccess = $this->access;
1386 
1387  if (!$this->lm->isInfoEnabled()) {
1388  return "";
1389  }
1390 
1391  $this->initScreenHead();
1392 
1393  $this->lng->loadLanguageModule("meta");
1394 
1395  $info = new ilInfoScreenGUI($this->lm_gui);
1396  $info->enablePrivateNotes();
1397  //$info->enableLearningProgress();
1398  $info->enableNews();
1399  if ($ilAccess->checkAccess("write", "", $this->requested_ref_id)) {
1400  $news_set = new ilSetting("news");
1401  $enable_internal_rss = $news_set->get("enable_rss_for_internal");
1402 
1403  $info->enableNewsEditing();
1404 
1405  if ($enable_internal_rss) {
1406  $info->setBlockProperty("news", "settings", true);
1407  }
1408  }
1409 
1410  // show standard meta data section
1411  $info->addMetaDataSections($this->lm->getId(), 0, $this->lm->getType());
1412 
1413  $this->lng->loadLanguageModule("copg");
1414  $est_reading_time = $this->reading_time_manager->getReadingTime($this->lm->getId());
1415  if (!is_null($est_reading_time)) {
1416  $info->addProperty(
1417  $this->lng->txt("copg_est_reading_time"),
1418  sprintf($this->lng->txt("copg_x_minutes"), $est_reading_time)
1419  );
1420  }
1421 
1422  if ($this->offlineMode()) {
1423  $this->tpl->setContent($info->getHTML());
1424  return $this->tpl->get();
1425  } else {
1426  // forward the command
1427  $this->ctrl->forwardCommand($info);
1428  //$this->tpl->setContent("aa");
1429  $this->tpl->printToStdout();
1430  }
1431  return "";
1432  }
1433 
1437  public function showPrintViewSelection(): void
1438  {
1439  $ilUser = $this->user;
1440  $lng = $this->lng;
1441 
1442  if (!$this->lm->isActivePrintView() || !$this->lm->isActiveLMMenu()) {
1443  return;
1444  }
1445 
1446  $disabled = false;
1447  $img_alt = "";
1448 
1449  $tpl = new ilTemplate("tpl.lm_print_selection.html", true, true, "components/ILIAS/LearningModule");
1450 
1451  $this->ctrl->setParameterByClass("illmpresentationgui", "obj_id", $this->requested_obj_id);
1452  $tpl->setVariable("FORMACTION", $this->ctrl->getFormAction($this));
1453 
1454  $nodes = $this->lm_tree->getSubTree($this->lm_tree->getNodeData($this->lm_tree->getRootId()));
1455  $nodes = $this->filterNonAccessibleNode($nodes);
1456 
1457  $this->initPrintViewSelectionForm();
1458 
1459  foreach ($nodes as $node) {
1460  $img_src = "";
1461  $disabled = false;
1462  $img_alt = "";
1463 
1464  // check page activation
1465  $active = ilLMPage::_lookupActive(
1466  $node["obj_id"],
1467  $this->lm->getType(),
1468  (bool) $this->lm_set->get("time_scheduled_page_activation")
1469  );
1470 
1471  if ($node["type"] == "pg" &&
1472  !$active) {
1473  continue;
1474  }
1475 
1476  $text = "";
1477  $img_alt = "";
1478  $checked = false;
1479 
1480  switch ($node["type"]) {
1481  // page
1482  case "pg":
1483  $text =
1485  $node["obj_id"],
1486  $this->lm->getPageHeader(),
1487  $this->lm->isActiveNumbering(),
1488  (bool) $this->lm_set->get("time_scheduled_page_activation"),
1489  false,
1490  0,
1491  $this->lang
1492  );
1493 
1494  $img_src = ilUtil::getImagePath("standard/icon_pg.svg");
1495  $img_alt = $lng->txt("icon") . " " . $lng->txt("pg");
1496  break;
1497 
1498  // learning module
1499  case "du":
1500  $text = $this->getLMPresentationTitle();
1501  $img_src = ilUtil::getImagePath("standard/icon_lm.svg");
1502  $img_alt = $lng->txt("icon") . " " . $lng->txt("obj_lm");
1503  break;
1504 
1505  // chapter
1506  case "st":
1507  $text =
1509  $node["obj_id"],
1511  $this->lm->isActiveNumbering(),
1512  (bool) $this->lm_set->get("time_scheduled_page_activation"),
1513  false,
1514  0,
1515  $this->lang
1516  );
1517  $img_src = ilUtil::getImagePath("standard/icon_st.svg");
1518  $img_alt = $lng->txt("icon") . " " . $lng->txt("st");
1519  break;
1520  }
1521 
1523  $this->lm->getRefId(),
1524  $this->lm->getId(),
1525  $node["obj_id"]
1526  )) {
1527  $text .= " (" . $this->lng->txt("cont_no_access") . ")";
1528  }
1529 
1530  $this->nl->addListNode(
1531  $node["obj_id"],
1532  $text,
1533  $node["parent"],
1534  $checked,
1535  $disabled,
1536  $img_src,
1537  $img_alt
1538  );
1539  }
1540 
1541  // check for free page
1542  if ($this->requested_obj_id > 0 && !$this->lm_tree->isInTree($this->requested_obj_id)) {
1543  $text =
1545  $this->requested_obj_id,
1546  $this->lm->getPageHeader(),
1547  $this->lm->isActiveNumbering(),
1548  (bool) $this->lm_set->get("time_scheduled_page_activation"),
1549  false,
1550  0,
1551  $this->lang
1552  );
1553 
1554  $img_src = ilUtil::getImagePath("standard/icon_pg.svg");
1556 
1557  $checked = true;
1558 
1559  $this->nl->addListNode(
1560  $id,
1561  $text,
1562  0,
1563  $checked,
1564  $disabled,
1565  $img_src,
1566  $img_alt
1567  );
1568  }
1569 
1570  $f = $this->form->getHTMLAsync();
1571 
1572  $tpl->setVariable("ITEM_SELECTION", $f);
1573 
1574  $modal = $this->ui->factory()->modal()->roundtrip(
1575  $this->lng->txt("cont_print_view"),
1576  $this->ui->factory()->legacy()->content($tpl->get())
1577  );
1578  echo $this->ui->renderer()->render($modal);
1579  exit();
1580  }
1581 
1582  protected function filterNonAccessibleNode(
1583  array $nodes
1584  ): array {
1585  $tracker = $this->getTracker();
1586  // if navigation is restricted based on correct answered questions
1587  // check if we have preceeding pages including unsanswered/incorrect answered questions
1588  if (!$this->offlineMode()) {
1589  if ($this->lm->getRestrictForwardNavigation()) {
1590  $nodes = array_filter($nodes, function ($node) use ($tracker) {
1591  return !$tracker->hasPredIncorrectAnswers($node["child"]);
1592  });
1593  }
1594  }
1595  return $nodes;
1596  }
1597 
1598  public function initPrintViewSelectionForm(): void
1599  {
1600  $lng = $this->lng;
1601  $ilCtrl = $this->ctrl;
1602 
1603  $this->form = new ilPropertyFormGUI();
1604  $this->form->setForceTopButtons(true);
1605 
1606  // selection type
1607  $radg = new ilRadioGroupInputGUI($lng->txt("cont_selection"), "sel_type");
1608  $radg->setValue("page");
1609  $op1 = new ilRadioOption($lng->txt("cont_current_page"), "page");
1610  $radg->addOption($op1);
1611  $op2 = new ilRadioOption($lng->txt("cont_current_chapter"), "chapter");
1612  $radg->addOption($op2);
1613  $op3 = new ilRadioOption($lng->txt("cont_selected_pg_chap"), "selection");
1614  $radg->addOption($op3);
1615 
1616  $nl = new ilNestedListInputGUI("", "obj_id");
1617  $this->nl = $nl;
1618  $op3->addSubItem($nl);
1619 
1620  $this->form->addItem($radg);
1621 
1622  $this->form->addCommandButton("showPrintView", $lng->txt("cont_show_print_view"));
1623  $this->form->setOpenTag(false);
1624  $this->form->setCloseTag(false);
1625 
1626  $this->form->setTitle(" ");
1627  $this->form->setFormAction($ilCtrl->getFormAction($this));
1628  }
1629 
1630  public function showPrintView(): void
1631  {
1632  $ilUser = $this->user;
1633  $lng = $this->lng;
1634  $ilCtrl = $this->ctrl;
1635  $tabs = $this->tabs;
1636  $header_page_content = "";
1637  $footer_page_content = "";
1638  $chapter_title = "";
1639  $did_chap_page_header = false;
1640 
1641  $lom_paths = $this->lom_services->paths();
1642  $lom_data_helper = $this->lom_services->dataHelper();
1643  $lom_cp_helper = $this->lom_services->copyrightHelper();
1644  $lom_reader = $this->lom_services->read($this->lm->getId(), 0, $this->lm->getType());
1645 
1646  if (!$this->lm->isActivePrintView() || !$this->lm->isActiveLMMenu()) {
1647  return;
1648  }
1649 
1650  $this->renderPageTitle();
1651 
1652  $tabs->setBackTarget(
1653  $lng->txt("back"),
1654  $ilCtrl->getLinkTarget($this, "layout")
1655  );
1656 
1657  $c_obj_id = $this->getCurrentPageId();
1658  // set values according to selection
1659  $sel_type = $this->service->getRequest()->getSelectedType();
1660  $sel_obj_ids = $this->service->getRequest()->getSelectedObjIds();
1661  if ($sel_type == "page") {
1662  if (!in_array($c_obj_id, $sel_obj_ids)) {
1663  $sel_obj_ids[] = $c_obj_id;
1664  }
1665  }
1666  if ($sel_type == "chapter" && $c_obj_id > 0) {
1667  $path = $this->lm_tree->getPathFull($c_obj_id);
1668  $chap_id = $path[1]["child"];
1669  if ($chap_id > 0) {
1670  $sel_obj_ids[] = $chap_id;
1671  }
1672  }
1673 
1674  $this->setContentStyles();
1675 
1676  $tpl = new ilTemplate("tpl.lm_print_view.html", true, true, "components/ILIAS/LearningModule");
1677 
1678  // set title header
1679  $this->tpl->setTitle($this->getLMPresentationTitle());
1680 
1681  $nodes = $this->lm_tree->getSubTree($this->lm_tree->getNodeData($this->lm_tree->getRootId()));
1682 
1683  $act_level = 99999;
1684  $activated = false;
1685 
1686  $glossary_links = array();
1687  $output_header = false;
1688  $media_links = array();
1689 
1690  // get header and footer
1691  if ($this->lm->getFooterPage() > 0 && !$this->lm->getHideHeaderFooterPrint()) {
1692  if (ilLMObject::_exists($this->lm->getFooterPage())) {
1693  $page_object_gui = $this->getLMPageGUI($this->lm->getFooterPage());
1694  $page_object_gui->setStyleId(
1695  $this->content_style_domain->getEffectiveStyleId()
1696  );
1697 
1698  // determine target frames for internal links
1699  $page_object_gui->setLinkFrame($this->requested_frame);
1700  $page_object_gui->setOutputMode("print");
1701  $page_object_gui->setPresentationTitle("");
1702  $page_object_gui->setFileDownloadLink("#");
1703  $page_object_gui->setFullscreenLink("#");
1704  $page_object_gui->setSourcecodeDownloadScript("#");
1705  $footer_page_content = $page_object_gui->showPage();
1706  }
1707  }
1708  if ($this->lm->getHeaderPage() > 0 && !$this->lm->getHideHeaderFooterPrint()) {
1709  if (ilLMObject::_exists($this->lm->getHeaderPage())) {
1710  $page_object_gui = $this->getLMPageGUI($this->lm->getHeaderPage());
1711  $page_object_gui->setStyleId(
1712  $this->content_style_domain->getEffectiveStyleId()
1713  );
1714 
1715  // determine target frames for internal links
1716  $page_object_gui->setLinkFrame($this->requested_frame);
1717  $page_object_gui->setOutputMode("print");
1718  $page_object_gui->setPresentationTitle("");
1719  $page_object_gui->setFileDownloadLink("#");
1720  $page_object_gui->setFullscreenLink("#");
1721  $page_object_gui->setSourcecodeDownloadScript("#");
1722  $header_page_content = $page_object_gui->showPage();
1723  }
1724  }
1725 
1726  // add free selected pages
1727  if (count($sel_obj_ids) > 0) {
1728  foreach ($sel_obj_ids as $k) {
1729  if ($k > 0 && !$this->lm_tree->isInTree($k)) {
1730  if (ilLMObject::_lookupType($k) == "pg") {
1731  $nodes[] = array("obj_id" => $k, "type" => "pg", "free" => true);
1732  }
1733  }
1734  }
1735  } else {
1736  $this->tpl->setOnScreenMessage('failure', $lng->txt("cont_print_no_page_selected"), true);
1737  $ilCtrl->redirect($this, "showPrintViewSelection");
1738  }
1739 
1740  foreach ($nodes as $node_key => $node) {
1741  // check page activation
1742  $active = ilLMPage::_lookupActive(
1743  $node["obj_id"],
1744  $this->lm->getType(),
1745  (bool) $this->lm_set->get("time_scheduled_page_activation")
1746  );
1747  if ($node["type"] == "pg" && !$active) {
1748  continue;
1749  }
1750 
1751  // print all subchapters/subpages if higher chapter
1752  // has been selected
1753  if ($node["depth"] <= $act_level) {
1754  if (in_array($node["obj_id"], $sel_obj_ids)) {
1755  $act_level = $node["depth"];
1756  $activated = true;
1757  } else {
1758  $act_level = 99999;
1759  $activated = false;
1760  }
1761  }
1762  if ($this->lm->getRestrictForwardNavigation()) {
1763  if ($this->getTracker()->hasPredIncorrectAnswers($node["obj_id"])) {
1764  continue;
1765  }
1766  }
1767  if ($activated &&
1769  $this->lm->getRefId(),
1770  $this->lm->getId(),
1771  $node["obj_id"]
1772  )) {
1773  // output learning module header
1774  if ($node["type"] == "du") {
1775  $output_header = true;
1776  }
1777 
1778  // output chapter title
1779  if ($node["type"] == "st") {
1780 
1781  $chap = new ilStructureObject($this->lm, $node["obj_id"]);
1782  $tpl->setCurrentBlock("print_chapter");
1783 
1784  $chapter_title = $chap->_getPresentationTitle(
1785  $node["obj_id"],
1786  $this->lm->isActiveNumbering(),
1787  (bool) $this->lm_set->get("time_scheduled_page_activation"),
1788  0,
1789  $this->lang
1790  );
1791  $tpl->setVariable(
1792  "CHAP_TITLE",
1793  $chapter_title
1794  );
1795 
1796  if ($this->lm->getPageHeader() == ilLMObject::CHAPTER_TITLE) {
1797  if ($nodes[$node_key + 1]["type"] == "pg") {
1798  $tpl->setVariable(
1799  "CHAP_HEADER",
1800  $header_page_content
1801  );
1802  $did_chap_page_header = true;
1803  }
1804  }
1805 
1806  $tpl->parseCurrentBlock();
1807  $tpl->setCurrentBlock("print_block");
1808  $tpl->parseCurrentBlock();
1809  }
1810 
1811  // output page
1812  if ($node["type"] === "pg") {
1813 
1814  $tpl->setCurrentBlock("print_item");
1815 
1816  // get page
1817  $page_id = $node["obj_id"];
1818  $page_object_gui = $this->getLMPageGUI($page_id);
1819  $page_object = $page_object_gui->getPageObject();
1820  $page_object_gui->setStyleId(
1821  $this->content_style_domain->getEffectiveStyleId()
1822  );
1823 
1824  // get lm page
1825  $lm_pg_obj = new ilLMPageObject($this->lm, $page_id);
1826  $lm_pg_obj->setLMId($this->lm->getId());
1827 
1828  // determine target frames for internal links
1829  $page_object_gui->setLinkFrame($this->requested_frame);
1830  $page_object_gui->setOutputMode("print");
1831  $page_object_gui->setPresentationTitle("");
1832 
1833  if ($this->lm->getPageHeader() == ilLMObject::PAGE_TITLE || ($node["free"] ?? false) === true) {
1835  $lm_pg_obj->getId(),
1836  $this->lm->getPageHeader(),
1837  $this->lm->isActiveNumbering(),
1838  (bool) $this->lm_set->get("time_scheduled_page_activation"),
1839  false,
1840  0,
1841  $this->lang
1842  );
1843 
1844  // prevent page title after chapter title
1845  // that have the same content
1846  if ($this->lm->isActiveNumbering()) {
1847  $chapter_title = trim(substr(
1848  $chapter_title,
1849  strpos($chapter_title, " ")
1850  ));
1851  }
1852 
1853  if ($page_title != $chapter_title) {
1854  $page_object_gui->setPresentationTitle($page_title);
1855  }
1856  }
1857 
1858  // handle header / footer
1859  $hcont = $header_page_content;
1860  $fcont = $footer_page_content;
1861 
1862  if ($this->lm->getPageHeader() == ilLMObject::CHAPTER_TITLE) {
1863  if ($did_chap_page_header) {
1864  $hcont = "";
1865  }
1866  if (($nodes[$node_key + 1]["type"] ?? "") == "pg" &&
1867  !($nodes[$node_key + 1]["depth"] <= $act_level
1868  && !in_array($nodes[$node_key + 1]["obj_id"], $sel_obj_ids))) {
1869  $fcont = "";
1870  }
1871  }
1872 
1873  $page_object_gui->setFileDownloadLink("#");
1874  $page_object_gui->setFullscreenLink("#");
1875  $page_object_gui->setSourcecodeDownloadScript("#");
1876  $page_content = $page_object_gui->showPage();
1877  if ($this->lm->getPageHeader() != ilLMObject::PAGE_TITLE) {
1878  $tpl->setVariable(
1879  "CONTENT",
1880  $hcont . $page_content . $fcont
1881  );
1882  } else {
1883  $tpl->setVariable(
1884  "CONTENT",
1885  $hcont . $page_content . $fcont . "<br />"
1886  );
1887  }
1888  $chapter_title = "";
1889  $tpl->parseCurrentBlock();
1890  $tpl->setCurrentBlock("print_block");
1891  $tpl->parseCurrentBlock();
1892 
1893  // get internal links
1894  $int_links = ilInternalLink::_getTargetsOfSource($this->lm->getType() . ":pg", $node["obj_id"]);
1895 
1896  $got_mobs = false;
1897 
1898  foreach ($int_links as $key => $link) {
1899  if ($link["type"] == "git" &&
1900  ($link["inst"] == IL_INST_ID || $link["inst"] == 0)) {
1901  $glossary_links[$key] = $link;
1902  }
1903  if ($link["type"] == "mob" &&
1904  ($link["inst"] == IL_INST_ID || $link["inst"] == 0)) {
1905  $got_mobs = true;
1906  $mob_links[$key] = $link;
1907  }
1908  }
1909 
1910  // this is not cool because of performance reasons
1911  // unfortunately the int link table does not
1912  // store the target frame (we want to append all linked
1913  // images but not inline images (i.e. mobs with no target
1914  // frame))
1915  if ($got_mobs) {
1916  $page_object->buildDom();
1917  $links = $page_object->getInternalLinks();
1918  $tf = $link["TargetFrame"] ?? "";
1919  foreach ($links as $link) {
1920  if ($link["Type"] === "MediaObject"
1921  && $tf !== ""
1922  && $tf !== "None") {
1923  $media_links[] = $link;
1924  }
1925  }
1926  }
1927  }
1928  }
1929  }
1930 
1931  $annex_cnt = 0;
1932  $annexes = array();
1933 
1934  // glossary
1935  if (count($glossary_links) > 0 && !$this->lm->isActivePreventGlossaryAppendix()) {
1936  // sort terms
1937  $terms = array();
1938 
1939  foreach ($glossary_links as $key => $link) {
1940  $term = ilGlossaryTerm::_lookGlossaryTerm($link["id"]);
1941  $terms[$term . ":" . $key] = array("key" => $key, "link" => $link, "term" => $term);
1942  }
1943  $terms = ilArrayUtil::sortArray($terms, "term", "asc");
1944  //ksort($terms);
1945 
1946  foreach ($terms as $t) {
1947  $link = $t["link"];
1948  $key = $t["key"];
1949 
1950  // output definition of term
1951  $page_gui = new ilGlossaryDefPageGUI($link["id"]);
1952  $page_gui->setTemplateOutput(false);
1953  $page_gui->setOutputMode("print");
1954 
1955  $tpl->setCurrentBlock("definition");
1956  $page_gui->setFileDownloadLink("#");
1957  $page_gui->setFullscreenLink("#");
1958  $page_gui->setSourcecodeDownloadScript("#");
1959  $output = $page_gui->showPage();
1960  $tpl->setVariable("VAL_DEFINITION", $output);
1961  $tpl->parseCurrentBlock();
1962 
1963  // output term
1964  $tpl->setCurrentBlock("term");
1965  $tpl->setVariable(
1966  "VAL_TERM",
1967  $term = ilGlossaryTerm::_lookGlossaryTerm($link["id"])
1968  );
1969  $tpl->parseCurrentBlock();
1970  }
1971 
1972  // output glossary header
1973  $annex_cnt++;
1974  $tpl->setCurrentBlock("glossary");
1975  $annex_title = $this->lng->txt("cont_annex") . " " .
1976  chr(64 + $annex_cnt) . ": " . $this->lng->txt("glo");
1977  $tpl->setVariable("TXT_GLOSSARY", $annex_title);
1978  $tpl->parseCurrentBlock();
1979 
1980  $annexes[] = $annex_title;
1981  }
1982 
1983  // referenced images
1984  if (count($media_links) > 0) {
1985  foreach ($media_links as $media) {
1986  if (substr($media["Target"], 0, 4) == "il__") {
1987  $arr = explode("_", $media["Target"]);
1988  $id = $arr[count($arr) - 1];
1989 
1990  $med_obj = new ilObjMediaObject($id);
1991  $med_item = $med_obj->getMediaItem("Standard");
1992  if (is_object($med_item)) {
1993  if (is_int(strpos($med_item->getFormat(), "image"))) {
1994  $tpl->setCurrentBlock("ref_image");
1995 
1996  // image source
1997  if ($med_item->getLocationType() == "LocalFile") {
1998  $tpl->setVariable(
1999  "IMG_SOURCE",
2000  ilFileUtils::getWebspaceDir("output") . "/mobs/mm_" . $id .
2001  "/" . $med_item->getLocation()
2002  );
2003  } else {
2004  $tpl->setVariable(
2005  "IMG_SOURCE",
2006  $med_item->getLocation()
2007  );
2008  }
2009 
2010  if ($med_item->getCaption() != "") {
2011  $tpl->setVariable("IMG_TITLE", $med_item->getCaption());
2012  } else {
2013  $tpl->setVariable("IMG_TITLE", $med_obj->getTitle());
2014  }
2015  $tpl->parseCurrentBlock();
2016  }
2017  }
2018  }
2019  }
2020 
2021  // output glossary header
2022  $annex_cnt++;
2023  $tpl->setCurrentBlock("ref_images");
2024  $annex_title = $this->lng->txt("cont_annex") . " " .
2025  chr(64 + $annex_cnt) . ": " . $this->lng->txt("cont_ref_images");
2026  $tpl->setVariable("TXT_REF_IMAGES", $annex_title);
2027  $tpl->parseCurrentBlock();
2028 
2029  $annexes[] = $annex_title;
2030  }
2031 
2032  // output learning module title and toc
2033  if ($output_header) {
2034  $tpl->setCurrentBlock("print_header");
2035  $tpl->setVariable("LM_TITLE", $this->getLMPresentationTitle());
2036  if ($this->lm->getDescription() != "none") {
2037  $tpl->setVariable(
2038  "LM_DESCRIPTION",
2039  $lom_reader->firstData($lom_paths->firstDescription())->value()
2040  );
2041  }
2042  $tpl->parseCurrentBlock();
2043 
2044  // output toc
2045  $nodes2 = $nodes;
2046  foreach ($nodes2 as $node2) {
2047  if ($node2["type"] == "st"
2049  $this->lm->getRefId(),
2050  $this->lm->getId(),
2051  $node2["obj_id"]
2052  )) {
2053  for ($j = 1; $j < $node2["depth"]; $j++) {
2054  $tpl->setCurrentBlock("indent");
2055  $tpl->setVariable("IMG_BLANK", ilUtil::getImagePath("browser/blank.png"));
2056  $tpl->parseCurrentBlock();
2057  }
2058  $tpl->setCurrentBlock("toc_entry");
2059  $tpl->setVariable(
2060  "TXT_TOC_TITLE",
2062  $node2["obj_id"],
2064  $this->lm->isActiveNumbering(),
2065  (bool) $this->lm_set->get("time_scheduled_page_activation"),
2066  false,
2067  0,
2068  $this->lang
2069  )
2070  );
2071  $tpl->parseCurrentBlock();
2072  }
2073  }
2074 
2075  // annexes
2076  foreach ($annexes as $annex) {
2077  $tpl->setCurrentBlock("indent");
2078  $tpl->setVariable("IMG_BLANK", ilUtil::getImagePath("browser/blank.png"));
2079  $tpl->parseCurrentBlock();
2080  $tpl->setCurrentBlock("toc_entry");
2081  $tpl->setVariable("TXT_TOC_TITLE", $annex);
2082  $tpl->parseCurrentBlock();
2083  }
2084 
2085  $tpl->setCurrentBlock("toc");
2086  $tpl->setVariable("TXT_TOC", $this->lng->txt("cont_toc"));
2087  $tpl->parseCurrentBlock();
2088 
2089  $tpl->setCurrentBlock("print_start_block");
2090  $tpl->parseCurrentBlock();
2091  }
2092 
2093  // output author information
2094  $authors = $lom_data_helper->makePresentableAsList(
2095  ", ",
2096  ...$lom_reader->allData($lom_paths->authors())
2097  );
2098  if ($authors != "") {
2099  $this->lng->loadLanguageModule("meta");
2100  $tpl->setCurrentBlock("author");
2101  $tpl->setVariable("TXT_AUTHOR", $this->lng->txt("meta_author"));
2102  $tpl->setVariable("LM_AUTHOR", $authors);
2103  $tpl->parseCurrentBlock();
2104  }
2105 
2106  // output copyright information
2107  if ($lom_cp_helper->hasPresetCopyright($lom_reader)) {
2108  $copyright = $this->ui->renderer()->render(
2109  $lom_cp_helper->readPresetCopyright($lom_reader)->presentAsUIComponents()
2110  );
2111  } else {
2112  $copyright = $lom_cp_helper->readCustomCopyright($lom_reader);
2113  }
2114  if ($copyright != "") {
2115  $this->lng->loadLanguageModule("meta");
2116  $tpl->setCurrentBlock("copyright");
2117  $tpl->setVariable("TXT_COPYRIGHT", $this->lng->txt("meta_copyright"));
2118  $tpl->setVariable("LM_COPYRIGHT", $copyright);
2119  $tpl->parseCurrentBlock();
2120  }
2121  $this->tpl->setContent($tpl->get());
2122  $this->tpl->addOnLoadCode("il.Util.print();");
2123  $this->tpl->printToStdout();
2124  }
2125 
2129  public function downloadFile(): void
2130  {
2131  $page_gui = $this->getLMPageGUI($this->getCurrentPageId());
2132  $page_gui->downloadFile();
2133  }
2134 
2138  public function showDownloadList(): void
2139  {
2140  if (!$this->lm->isActiveDownloads() || !$this->lm->isActiveLMMenu()) {
2141  return;
2142  }
2143  $tpl = new ilTemplate("tpl.lm_download_list.html", true, true, "components/ILIAS/LearningModule");
2144 
2145  // output copyright information
2146  $lom_cp_helper = $this->lom_services->copyrightHelper();
2147  $lom_reader = $this->lom_services->read($this->lm->getId(), 0, $this->lm->getType());
2148  if ($lom_cp_helper->hasPresetCopyright($lom_reader)) {
2149  $copyright = $this->ui->renderer()->render(
2150  $lom_cp_helper->readPresetCopyright($lom_reader)->presentAsUIComponents()
2151  );
2152  } else {
2153  $copyright = $lom_cp_helper->readCustomCopyright($lom_reader);
2154  }
2155  if ($copyright != "") {
2156  $this->lng->loadLanguageModule("meta");
2157  $tpl->setCurrentBlock("copyright");
2158  $tpl->setVariable("TXT_COPYRIGHT", $this->lng->txt("meta_copyright"));
2159  $tpl->setVariable("LM_COPYRIGHT", $copyright);
2160  $tpl->parseCurrentBlock();
2161  }
2162 
2163  $download_table = new ilLMDownloadTableGUI($this, "showDownloadList", $this->lm);
2164  $tpl->setVariable("DOWNLOAD_TABLE", $download_table->getHTML());
2165  //$this->tpl->printToStdout();
2166 
2167  $modal = $this->ui->factory()->modal()->roundtrip(
2168  $this->lng->txt("download"),
2169  $this->ui->factory()->legacy()->content($tpl->get())
2170  );
2171  echo $this->ui->renderer()->render($modal);
2172  exit();
2173  }
2174 
2178  public function downloadExportFile(): void
2179  {
2180  if (!$this->lm->isActiveDownloads() || !$this->lm->isActiveLMMenu()) {
2181  return;
2182  }
2183 
2184  $type = $this->requested_type;
2185  $base_type = explode("_", $type);
2186  $base_type = $base_type[0];
2187  $file = $this->lm->getPublicExportFile($base_type);
2188  if ($this->lm->getPublicExportFile($base_type) != "") {
2189  $dir = $this->lm->getExportDirectory($type);
2190  if (is_file($dir . "/" . $file)) {
2191  ilFileDelivery::deliverFileLegacy($dir . "/" . $file, $file);
2192  exit;
2193  }
2194  }
2195  }
2196 
2203  public function getFocusLink(
2204  int $a_ref_id,
2205  int $a_obj_id,
2206  int $a_return_ref_id
2207  ): string {
2208  return "ilias.php?baseClass=ilLMPresentationGUI&amp;ref_id=" . $a_ref_id . "&amp;obj_id=" . $a_obj_id . "&amp;focus_id=" .
2209  $a_obj_id . "&amp;focus_return=" . $a_return_ref_id;
2210  }
2211 
2212  public function showMessageScreen(
2213  string $a_content
2214  ): void {
2215  // content style
2216  $this->setContentStyles();
2217 
2218  $tpl = new ilTemplate("tpl.page_message_screen.html", true, true, "components/ILIAS/LearningModule");
2219  $tpl->setVariable("TXT_PAGE_NO_PUBLIC_ACCESS", $a_content);
2220 
2221  $this->tpl->setVariable("PAGE_CONTENT", $tpl->get());
2222  }
2223 
2227  public function showNoPublicAccess(): void
2228  {
2229  $this->showMessageScreen($this->lng->txt("msg_page_no_public_access"));
2230  }
2231 
2235  public function showNoPageAccess(): void
2236  {
2237  $this->showMessageScreen($this->lng->txt("msg_no_page_access"));
2238  }
2239 
2244  public function showNavRestrictionDueToQuestions(): void
2245  {
2246  $this->showMessageScreen($this->lng->txt("cont_no_page_access_unansw_q"));
2247  }
2248 
2249  public function getSourcecodeDownloadLink(): string
2250  {
2251  if (!$this->offlineMode()) {
2252  return $this->ctrl->getLinkTarget($this, "");
2253  } else {
2254  return "";
2255  }
2256  }
2257 
2258  public function getOfflineDirectory(): string
2259  {
2260  return $this->offline_directory;
2261  }
2262 
2267  public function handleCodeParagraph(
2268  int $page_id,
2269  int $paragraph_id,
2270  string $title,
2271  string $text
2272  ): void {
2273  $directory = $this->getOfflineDirectory() . "/codefiles/" . $page_id . "/" . $paragraph_id;
2274  ilFileUtils::makeDirParents($directory);
2275  $file = $directory . "/" . $title;
2276  if (!($fp = fopen($file, "w+"))) {
2277  die("<strong>Error</strong>: Could not open \"" . $file . "\" for writing" .
2278  " in <strong>" . __FILE__ . "</strong> on line <strong>" . __LINE__ . "</strong><br />");
2279  }
2280  chmod($file, 0770);
2281  fwrite($fp, $text);
2282  fclose($fp);
2283  }
2284 
2285  // #8613
2286  protected function renderPageTitle(): void
2287  {
2288  $this->tpl->setHeaderPageTitle($this->getLMPresentationTitle());
2289  }
2290 
2291  public function getLMPageGUI(int $a_id): ilLMPageGUI
2292  {
2293  $concrete_lang = $this->service->getPresentationStatus()->getConcreteLang();
2294  if ($this->lang != "-" && ilPageObject::_exists("lm", $a_id, $this->lang)) {
2295  return new ilLMPageGUI($a_id, 0, false, $this->lang, $concrete_lang);
2296  }
2297  if ($this->lang != "-" && ilPageObject::_exists("lm", $a_id, $this->ot->getFallbackLanguage())) {
2298  return new ilLMPageGUI($a_id, 0, false, $this->ot->getFallbackLanguage(), $concrete_lang);
2299  }
2300  return new ilLMPageGUI($a_id, 0, false, "", $concrete_lang);
2301  }
2302 
2303  public function getLMPage(
2304  int $a_id,
2305  string $a_type = ""
2306  ): ilPageObject {
2307  $type = ($a_type == "mep")
2308  ? "mep"
2309  : "lm";
2310 
2311  $lang = $this->lang;
2312  if (!ilPageObject::_exists($type, $a_id, $lang)) {
2313  $lang = "-";
2314  if ($this->lang != "-" && ilPageObject::_exists($type, $a_id, $this->ot->getFallbackLanguage())) {
2315  $lang = $this->ot->getFallbackLanguage();
2316  }
2317  }
2318 
2319  switch ($type) {
2320  case "mep":
2321  return new ilMediaPoolPage($a_id, 0, $lang);
2322  default:
2323  return new ilLMPage($a_id, 0, $lang);
2324  }
2325  }
2326 
2330  public function refreshToc(): void
2331  {
2332  $exp = $this->ilTOC();
2333 
2334  echo $exp->getHTML() .
2335  "<script>" . $exp->getOnLoadCode() . "</script>";
2336  exit;
2337  }
2338 
2343  public function observeNoteAction(
2344  int $a_lm_id,
2345  int $a_page_id,
2346  string $a_type,
2347  string $a_action,
2348  int $a_note_id
2349  ): void {
2350  $note = $this->notes->getById($a_note_id);
2351  $text = $note->getText();
2352 
2353  $notification = new ilLearningModuleNotification(
2356  $this->lm,
2357  $a_page_id,
2358  $text
2359  );
2360 
2361  $notification->send();
2362  }
2363 
2364  // render menu
2365  protected function renderTabs(
2366  string $active_tab,
2367  int $current_page_id
2368  ): void {
2369  $menu_editor = new ilLMMenuEditor();
2370  $menu_editor->setObjId($this->lm->getId());
2371 
2372  $navigation_renderer = new ilLMMenuRendererGUI(
2373  $this->getService(),
2374  $this->tabs,
2375  $this->toolbar,
2376  $current_page_id,
2377  $active_tab,
2378  $this->getExportFormat(),
2379  $this->export_all_languages,
2380  $this->lm,
2381  $this->offlineMode(),
2382  $menu_editor,
2383  $this->lang,
2384  $this->ctrl,
2385  $this->access,
2386  $this->user,
2387  $this->lng,
2388  $this->tpl,
2389  function ($additional_content) {
2390  $this->additional_content[] = $additional_content;
2391  }
2392  );
2393  $navigation_renderer->render();
2394  }
2395 
2399  public function getHTML(array $pars): string
2400  {
2401  $this->addResourceFiles();
2402  switch ($pars["cmd"]) {
2403  case "layout":
2404  $tpl = new ilTemplate("tpl.embedded_view.html", true, true, "components/ILIAS/LearningModule");
2405  $tpl->setVariable("HEAD_ACTION", $this->getHeaderAction());
2406  $tpl->setVariable("PAGE_RATING", $this->renderRating());
2407  $tpl->setVariable("PAGE", $this->getContent(true));
2408  $tpl->setVariable("COMMENTS", $this->ilLMNotes());
2409  return $tpl->get();
2410  }
2411  return "";
2412  }
2413 }
static getWebspaceDir(string $mode="filesystem")
get webspace directory
showMessageScreen(string $a_content)
determineLayout()
Determine layout.
static _lookupActive(int $a_id, string $a_parent_type, bool $a_check_scheduled_activation=false, string $a_lang="-")
lookup activation status
static getStyleSheetLocation(string $mode="output", string $a_css_name="")
get full style sheet file name (path inclusive) of current user
This class represents an option in a radio group.
parseCurrentBlock(string $block_name=self::DEFAULT_BLOCK)
Parses the given block.
static _getPresentationTitle(int $a_st_id, string $a_mode=self::CHAPTER_TITLE, bool $a_include_numbers=false, bool $a_time_scheduled_activation=false, bool $a_force_content=false, int $a_lm_id=0, string $a_lang="-", bool $a_include_short=false)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
downloadFile()
download file of file lists
ilLMPresentationService $service
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilObjLearningModuleGUI $lm_gui
static addJavaScript(?ilGlobalTemplate $main_tpl=null)
Add javascript files that are necessary to run accordion.
const IL_INST_ID
Definition: constants.php:40
const ANONYMOUS_USER_ID
Definition: constants.php:27
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getHeaderAction(bool $a_redraw=false)
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...
setCurrentBlock(string $part=self::DEFAULT_BLOCK)
Sets the template to the given block.
special template class to simplify handling of ITX/PEAR
getSafePostCommands()
This method must return a list of safe POST commands.
setOutputMode(string $a_mode=self::PRESENTATION)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
if(! $DIC->user() ->getId()||!ilLTIConsumerAccess::hasCustomProviderCreationAccess()) $params
Definition: ltiregstart.php:31
hasPredIncorrectAnswers(int $a_obj_id, bool $a_ignore_unlock=false)
Has predecessing incorrect answers.
ILIAS Style Content Service $cs
showDownloadList()
show download list
Help GUI class.
Class ilPageObjectGUI.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setSystemStyle()
Set system style.
static getInstance(ilObjLearningModule $a_content_obj, int $a_id=0, bool $a_halt=true)
ILIAS GlobalScreen Services $global_screen
showNavRestrictionDueToQuestions()
Show message if navigation to page is not allowed due to unanswered questions.
__construct(string $a_export_format="", bool $a_all_languages=false, string $a_export_dir="", bool $claim_repo_context=true, ?array $query_params=null, bool $embed_mode=false)
ILIAS COPage Xsl XslManager $xsl
ILIAS Notes DomainService $notes
printToString()
Use this method to get the finally rendered page as string.
loadLanguageModule(string $a_module)
Load language module.
ILIAS COPage Dom DomUtil $dom_util
setOfflineDirectory(string $offdir)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
attrib2arr(?DOMNamedNodeMap $a_attributes)
setVariable(string $variable, $value='')
Sets the given variable to the given value.
static includePresentationJS(?ilGlobalTemplateInterface $a_tpl=null)
Include media object presentation JS.
handleCodeParagraph(int $page_id, int $paragraph_id, string $title, string $text)
store paragraph into file directory files/codefile_$pg_id_$paragraph_id/downloadtitle ...
static makeDirParents(string $a_dir)
Create a new directory and all parent directories.
initScreenHead(string $a_active_tab="info")
ilNavigationHistory $nav_history
ILIAS Style Content GUIService $content_style_gui
static resetRatingForUserAndObject(int $a_obj_id, string $a_obj_type, int $a_sub_obj_id, string $a_sub_obj_type, int $a_user_id)
Reset rating for a user and an object.
showInfoScreen()
info screen call from inside learning module
setStyleId(int $a_styleid)
refreshToc()
Refresh toc (called if questions have been answered correctly)
$ilErr
Definition: raiseError.php:33
$path
Definition: ltiservices.php:29
ilLMSubMenu()
output learning module submenu
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static deliverFileLegacy(string $a_file, ?string $a_filename=null, ?string $a_mime=null, ?bool $isInline=false, ?bool $removeAfterDelivery=false, ?bool $a_exit_after=true)
static writeRatingForUserAndObject(int $a_obj_id, string $a_obj_type, ?int $a_sub_obj_id, ?string $a_sub_obj_type, int $a_user_id, int $a_rating, int $a_category_id=0)
Write rating for a user and an object.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getCurrentFrameSet()
get frames of current frame set
checkAccess(string $a_operations, int $a_ref_id, string $a_type="")
checkAccess represents the main method of the RBAC-system in ILIAS3 developers want to use With this ...
initByRequest(?array $query_params=null, bool $embed_mode=false)
Init services and this class by request params.
This class represents a property in a property form.
getLMPage(int $a_id, string $a_type="")
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static addCss()
Add required css.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
$GLOBALS["DIC"]
Definition: wac.php:53
static setNotification(int $type, int $user_id, int $id, bool $status=true)
Set notification status for object and user.
static _checkPreconditionsOfPage(int $cont_ref_id, int $cont_obj_id, int $page_id)
checks whether the preconditions of a page are fulfilled or not
static _exists(string $a_parent_type, int $a_id, string $a_lang="", bool $a_no_cache=false)
Checks whether page exists.
observeNoteAction(int $a_lm_id, int $a_page_id, string $a_type, string $a_action, int $a_note_id)
Generate new ilNote and send Notifications to the users informing that there are new comments in the ...
static isTypeAllowed(string $a_type)
layout(string $a_xml="main.xml", bool $doShow=true)
static initjQuery(?ilGlobalTemplateInterface $a_tpl=null)
inits and adds the jQuery JS-File to the global or a passed template
Extension of ilPageObjectGUI for learning modules.
Class ilPageObject Handles PageObjects of ILIAS Learning Modules (see ILIAS DTD)
static _lookGlossaryTerm(int $term_id)
get glossary term
static getInstance(int $obj_id)
global $DIC
Definition: shib_login.php:22
setBackTarget(string $a_title, string $a_target, string $a_frame="")
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
offlineMode()
checks whether offline content generation is activated
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
downloadExportFile()
send download file (xml/html)
static getImagePath(string $image_name, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
ilLMPresentationLinker $linker
static _getMapAreasIntLinks(int $a_mob_id)
get all internal links of map areas of a mob
setFullscreenLink(string $a_fullscreen_link)
ilJavaScript(string $a_inline="", string $a_file="", string $a_location="")
getCurrentPageId()
Get the current page id.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setSourcecodeDownloadScript(string $script_name)
get(string $part=self::DEFAULT_BLOCK)
Renders the given block and returns the html string.
showPrintViewSelection()
show selection screen for print view
printToStdout(string $part=self::DEFAULT_BLOCK, bool $has_tabs=true, bool $skip_main_menu=false)
ILIAS Notes GUIService $notes_gui
const IL_MODE_ALIAS
Last visited history for repository items.
getFocusLink(int $a_ref_id, int $a_obj_id, int $a_return_ref_id)
Get focused link (used in learning objectives courses)
ILIAS LearningModule ReadingTime ReadingTimeManager $reading_time_manager
nop()
this dummy function is needed for offline package creation
getOnLoadCodeForAsynch()
Get js onload code for ajax calls.
basicPageGuiInit(\ilPageObjectGUI $a_page_gui)
setFileDownloadLink(string $a_download_link)
showNoPageAccess()
Show info message, if page is not accessible in public area.
getUnsafeGetCommands()
This method must return a list of unsafe GET commands.
static _exists(int $a_id)
checks wether a lm content object with specified id exists or not
form( $class_path, string $cmd, string $submit_caption="")
showNoPublicAccess()
Show info message, if page is not accessible in public area.
getContent(bool $skip_nav=false)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
renderTabs(string $active_tab, int $current_page_id)
static _getPresentationTitle(int $a_pg_id, string $a_mode=self::CHAPTER_TITLE, bool $a_include_numbers=false, bool $a_time_scheduled_activation=false, bool $a_force_content=false, int $a_lm_id=0, string $a_lang="-", bool $a_include_short=false)
presentation title doesn&#39;t have to be page title, it may be chapter title + page title or chapter tit...
getHTML(array $pars)
Get HTML (called by kiosk mode through ilCtrl)
static prepareJsLinks(string $redraw_url, string $notes_url, string $tags_url, ?ilGlobalTemplateInterface $tpl=null)
Insert js/ajax links into template.
This class represents a (nested) list of checkboxes (could be extended for radio items, too)
global $ilSetting
Definition: privfeed.php:31
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilGlobalTemplateInterface $tpl
static shortenTextExtended(string $a_str, int $a_len, bool $a_dots=false, bool $a_next_blank=false, bool $a_keep_extension=false)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _lookupType(int $a_obj_id, int $a_lm_id=0)
ILIAS Style Content Object ObjectFacade $content_style_domain
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
infoScreen()
this one is called from the info button in the repository not very nice to set cmdClass/Cmd manually...
static hasNotification(int $type, int $user_id, int $id)
Check notification status for object and user.
Session based immediate storage.
const IL_MODE_OUTPUT
static _getFrame(string $a_class)
ilLMNotes()
output notes of page
setSubObject(?string $sub_obj_type, ?int $sub_obj_id)
Set sub object attributes.
$post
Definition: ltitoken.php:46
exit
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Class ilObjUserTrackingGUI.
static initConnection(?ilGlobalTemplateInterface $a_main_tpl=null)
Init YUI Connection module.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Class ilCommonActionDispatcherGUI.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static getInstanceFromAjaxCall()
(Re-)Build instance from ajax call
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setContentStyles()
Set content style.
Main service init and factory.
injectTemplate(ilGlobalTemplateInterface $tpl)
static sortArray(array $array, string $a_array_sortby_key, string $a_array_sortorder="asc", bool $a_numeric=false, bool $a_keep_keys=false)
static hasOptOut(int $obj_id)
Is opt out (disable notification) allowed?