ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilImprintGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
32 {
35 
36  public function __construct()
37  {
38  global $DIC;
39 
40  $this->tpl = $DIC["tpl"];
41  $this->ctrl = $DIC->ctrl();
42  $this->locator = $DIC["ilLocator"];
43  $this->lng = $DIC->language();
44 
45  $this->imprint_request = new StandardGUIRequest(
46  $DIC->http(),
47  $DIC->refinery()
48  );
49 
50  if (!ilImprint::_exists("impr", 1)) {
51  $page = new ilImprint();
52  $page->setId(1);
53  $page->create(false);
54  }
55 
56  // there is only 1 imprint page
57  parent::__construct("impr", 1);
58 
59  // content style (using system defaults)
60  $this->tpl->setCurrentBlock("SyntaxStyle");
61  $this->tpl->setVariable(
62  "LOCATION_SYNTAX_STYLESHEET",
64  );
65  $this->tpl->parseCurrentBlock();
66 
67  $this->tpl->setCurrentBlock("ContentStyle");
68  $this->tpl->setVariable(
69  "LOCATION_CONTENT_STYLESHEET",
71  );
72  $this->tpl->parseCurrentBlock();
73  }
74 
75  public function executeCommand(): string
76  {
77  if (strtolower($this->imprint_request->getBaseClass()) ===
78  strtolower(ilImprintGUI::class)) {
79  $this->renderFullscreen();
80  }
81 
82  $next_class = $this->ctrl->getNextClass($this);
83 
84  $title = $this->lng->txt("adm_imprint");
85 
86  switch ($next_class) {
87  default:
88  $this->setPresentationTitle($title);
89  $ret = parent::executeCommand();
90  $this->tabs_gui->activateTab("pg");
91  return $ret;
92  }
93  }
94 
95  public function postOutputProcessing(string $a_output): string
96  {
97  $lng = $this->lng;
98 
99  if ($this->getOutputMode() === ilPageObjectGUI::PREVIEW) {
100  if (!$this->getPageObject()->getActive()) {
101  $this->tpl->setOnScreenMessage('info', $lng->txt("adm_imprint_inactive"));
102  }
103  }
104 
105  return $a_output;
106  }
107 
108  protected function renderFullscreen(): void
109  {
110  if (!ilImprint::isActive()) {
111  $this->ctrl->redirectToURL("ilias.php?baseClass=ilDashboardGUI");
112  }
113  $this->tpl->setTitle($this->lng->txt("imprint"));
114  $this->tpl->loadStandardTemplate();
115 
116  $this->setRawPageContent(true);
117  $this->tpl->setContent($this->showPage());
118 
119  $this->tpl->printToStdout("DEFAULT", true, false);
120  exit();
121  }
122 
123  protected function showEditToolbar(): void
124  {
125  $ui = $this->ui;
126  $lng = $this->lng;
127  if ($this->getEnableEditing()) {
128  $b = $ui->factory()->button()->standard(
129  $lng->txt("edit_page"),
130  $this->ctrl->getLinkTargetByClass([ilObjLegalNoticeGUI::class, __CLASS__], "edit")
131  );
132  $this->toolbar->addComponent($b);
133  }
134  }
135 
136  public function getTabs(string $a_activate = ""): void
137  {
138  if ($this->getOutputMode() === self::PRESENTATION) {
139  $this->tabs_gui->activateTab('view');
140  }
141  }
142 
143  public function preview(): string
144  {
145  $this->setOutputMode(self::PREVIEW);
146  return $this->showPage();
147  }
148 }
ILIAS DI UIServices $ui
getTabs(string $a_activate="")
postOutputProcessing(string $a_output)
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...
setOutputMode(string $a_mode=self::PRESENTATION)
Class ilPageObjectGUI.
StandardGUIRequest $imprint_request
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...
setRawPageContent(bool $a_rawpagecontent)
Set Get raw page content only.
static _exists(string $a_parent_type, int $a_id, string $a_lang="", bool $a_no_cache=false)
Checks whether page exists.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
global $DIC
Definition: shib_login.php:22
setPresentationTitle(string $a_title="")
static getContentStylePath(int $a_style_id, bool $add_random=true, bool $add_token=true)
get content style path static (to avoid full reading)
ilLocatorGUI $locator
Class ilImprintGUI.
__construct(Container $dic, ilPlugin $plugin)
showPage()
display content of page
exit
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static isActive()