31 protected \ILIAS\DI\UIServices
$ui;
32 protected \ilObjLearningModule
$lm;
33 protected \ilLanguage
$lng;
42 $this->
ui = $DIC->ui();
43 $this->
ctrl = $DIC->ctrl();
44 $this->service = $lm_pres_service;
45 $this->
lng = $DIC->language();
46 $this->
access = $DIC->access();
47 $this->lm = $this->service->getLearningModule();
49 $this->
user = $DIC->user();
62 $ctrl->setParameterByClass(
"illmpresentationgui",
'ref_id', $this->lm->getRefId());
65 if ($this->lm->isActivePrintView() && $access->checkAccess(
"read",
"", $this->lm->getRefId())) {
66 if (!$this->offline) {
67 $ui->mainTemplate()->addJavaScript(
"assets/js/Form.js");
68 $modal = $ui->factory()->modal()->roundtrip(
69 $lng->txt(
"cont_print_view"),
70 $ui->factory()->legacy()->content(
'some modal')
71 )->withAsyncRenderUrl($this->
ctrl->getLinkTargetByClass(
"illmpresentationgui",
"showPrintViewSelection"));
74 "label" => $this->
lng->txt(
"cont_print_view"),
75 "signal" => $modal->getShowSignal(),
84 $is_public = $this->lm->isActiveDownloadsPublic();
89 if ($this->lm->isActiveDownloads() && !$this->offline && $is_public &&
90 $access->checkAccess(
"read",
"", $this->lm->getRefId())) {
91 $modal = $ui->factory()->modal()->roundtrip(
92 $lng->txt(
"download"),
93 $ui->factory()->legacy()->content(
'some modal')
94 )->withAsyncRenderUrl($this->
ctrl->getLinkTargetByClass(
"illmpresentationgui",
"showDownloadList"));
96 "label" => $this->
lng->txt(
"download"),
97 "signal" => $modal->getShowSignal(),
104 $menu_editor = new \ilLMMenuEditor();
105 $menu_editor->setObjId($this->lm->getId());
107 $cust_menu = $menu_editor->getMenuEntries(
true);
109 if (count($cust_menu) > 0 && $access->checkAccess(
"read",
"", $this->lm->getRefId())) {
110 foreach ($cust_menu as $entry) {
112 if ($entry[
"type"] ==
"intern") {
113 $entry[
"link"] = ILIAS_HTTP_PATH .
"/goto.php?target=" . $entry[
"link"];
117 if (!strstr($entry[
"link"],
'://') && !strstr($entry[
"link"],
'mailto:')) {
118 $entry[
"link"] =
"https://" . $entry[
"link"];
121 if (!strstr($entry[
"link"],
'mailto:')) {
125 $signal = $generator->create();
128 "label" => $entry[
"title"],
131 "on_load" =>
"$(document).on('" .
133 "', function(event, signalData) {il.LearningModule.openMenuLink('" . $entry[
"link"] .
"');});"
static appendUrlParameterString(string $a_url, string $a_par, bool $xml_style=false)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
Main service init and factory.