ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilGlobalPageTemplate.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
30 
36 {
37  protected HTTPServices $http;
38  protected Services $gs;
39  protected UIServices $ui;
41  protected ilLanguage $lng;
43  protected Refinery $refinery;
44 
48  protected static array $ignored_blocks = [
49  self::DEFAULT_BLOCK,
50  'ContentStyle',
51  "SyntaxStyle",
52  "",
53  ];
54 
55 
59  public function __construct(Services $gs, UIServices $ui, HTTPServices $http)
60  {
61  global $DIC;
62  $this->lng = $DIC->language();
63  $this->ui = $ui;
64  $this->gs = $gs;
65  $this->http = $http;
66  $this->legacy_content_template = new PageContentGUI("tpl.page_content.html", true, true);
67  $this->il_settings = $DIC->settings();
68  $this->refinery = $DIC->refinery();
69  }
70 
71  protected function prepareOutputHeaders(): void
72  {
73  $this->http->saveResponse(
74  $this->http->response()->withAddedHeader(
75  'P3P',
76  'CP="CURa ADMa DEVa TAIa PSAa PSDa IVAa IVDa OUR BUS IND UNI COM NAV INT CNT STA PRE"'
77  )
78  );
79 
80  $this->http->saveResponse(
81  $this->http->response()->withAddedHeader('Content-type', 'text/html; charset=UTF-8')
82  );
83 
84  if (defined("ILIAS_HTTP_PATH")) {
85  $this->gs->layout()->meta()->setBaseURL(
86  (substr(ILIAS_HTTP_PATH, -1) === '/' ? ILIAS_HTTP_PATH : ILIAS_HTTP_PATH . '/')
87  );
88  }
89 
90  $this->gs->layout()->meta()->setTextDirection($this->lng->getTextDirection());
91  }
92 
96  protected function prepareBasicJS(): void
97  {
100  $this->gs->layout()->meta()->addJs("assets/js/Basic.js", true, 1);
101  ilUIFramework::init($this);
104  GlobalPageHandler::initPage($this);
105 
106  $sessionReminder = new ilSessionReminderGUI(
108  $this,
109  $this->lng
110  );
111 
112  $sessionReminder->populatePage();
113  $onScreenNotifier = new ilNotificationOSDGUI($this, $this->lng);
114  $onScreenNotifier->populatePage();
115  }
116 
117  protected function prepareBasicCSS(): void
118  {
119  $this->gs->layout()->meta()->addCss(ilUtil::getStyleSheetLocation());
120  $this->gs->layout()->meta()->addCss(ilUtil::getNewContentStyleSheetLocation());
121  }
122 
123  public function printToStdout(
124  string $part = self::DEFAULT_BLOCK,
125  bool $a_fill_tabs = true,
126  bool $a_skip_main_menu = false
127  ): void {
128  $this->prepareOutputHeaders();
129  $this->prepareBasicJS();
130  $this->prepareBasicCSS();
131 
132  PageContentProvider::setContent($this->legacy_content_template->renderPage(self::DEFAULT_BLOCK, true));
133  $this->http->sendResponse();
134 
135  print $this->ui->renderer()->render($this->gs->collector()->layout()->getFinalPage());
136 
137  // save language usages as late as possible
139  }
140 
141  public function printToString(): string
142  {
143  $this->prepareOutputHeaders();
144  $this->prepareBasicJS();
145  $this->prepareBasicCSS();
146 
147  PageContentProvider::setContent($this->legacy_content_template->renderPage(self::DEFAULT_BLOCK, true));
148 
149  return $this->ui->renderer()->render($this->gs->collector()->layout()->getFinalPage());
150  }
151 
152  public function addJavaScript(string $a_js_file, bool $a_add_version_parameter = true, int $a_batch = 2): void
153  {
154  $this->gs->layout()->meta()->addJs($a_js_file, $a_add_version_parameter, $a_batch);
155  }
156 
157  public function addCss(string $a_css_file, string $media = "screen"): void
158  {
159  $this->gs->layout()->meta()->addCss($a_css_file, $media);
160  }
161 
162  public function addOnLoadCode(string $a_code, int $a_batch = 2): void
163  {
164  $this->gs->layout()->meta()->addOnloadCode($a_code, $a_batch);
165  }
166 
167  public function addInlineCss(string $a_css, string $media = "screen"): void
168  {
169  $this->gs->layout()->meta()->addInlineCss($a_css, $media);
170  }
171 
172  public function setContent(string $a_html): void
173  {
174  $this->legacy_content_template->setMainContent($a_html);
175  }
176 
177  public function setLeftContent(string $a_html): void
178  {
179  $this->legacy_content_template->setLeftContent($a_html);
180  }
181 
182  public function setRightContent(string $a_html): void
183  {
184  $this->legacy_content_template->setRightContent($a_html);
185  }
186 
187  public function setFilter(string $filter): void
188  {
189  $this->legacy_content_template->setFilter($filter);
190  }
191 
192  public function setTitle(string $a_title, bool $hidden = false): void
193  {
194  $this->legacy_content_template->setTitle($a_title, $hidden);
195 
196  $short_title = (string) $this->il_settings->get('short_inst_name');
197  if (trim($short_title) === "") {
198  $short_title = 'ILIAS';
199  }
200 
201  PageContentProvider::setShortTitle($short_title);
202  PageContentProvider::setViewTitle($a_title);
203  $header_title = ilObjSystemFolder::_getHeaderTitle();
204  PageContentProvider::setTitle($header_title);
205  }
206 
207  public function setDescription(string $a_descr): void
208  {
209  $this->legacy_content_template->setTitleDesc($a_descr);
210  }
211 
212  public function setTitleIcon(string $a_icon_path, string $a_icon_desc = ""): void
213  {
214  $this->legacy_content_template->setIconPath($a_icon_path);
215  $this->legacy_content_template->setIconDesc($a_icon_desc);
216  }
217 
218  public function setBanner(string $img_src): void
219  {
220  $this->legacy_content_template->setBanner($img_src);
221  }
222 
223  public function setAlertProperties(array $a_props): void
224  {
225  $this->legacy_content_template->setTitleAlerts($a_props);
226  }
227 
228  public function setOnScreenMessage(string $a_type, string $a_txt, bool $a_keep = false): void
229  {
230  $this->legacy_content_template->setOnScreenMessage($a_type, $a_txt, $a_keep);
231  }
232 
233  public function setFileUploadRefId(int $a_ref_id): void
234  {
235  $this->legacy_content_template->setFileUploadRefId($a_ref_id);
236  }
237 
238  public function setHeaderActionMenu(string $a_header): void
239  {
240  $this->legacy_content_template->setHeaderAction($a_header);
241  }
242 
243  public function setHeaderPageTitle(string $a_title): void
244  {
245  PageContentProvider::setViewTitle($a_title);
246  }
247 
248  public function setPageFormAction(string $a_action): void
249  {
250  $this->legacy_content_template->setPageFormAction($a_action);
251  }
252 
253  public function addAdminPanelToolbar(ilToolbarGUI $toolb, bool $a_bottom_panel = true, bool $a_arrow = false): void
254  {
255  $this->legacy_content_template->setAdminPanelCommandsToolbar($toolb);
256  $this->legacy_content_template->setAdminPanelArrow($a_arrow);
257  $this->legacy_content_template->setAdminPanelBottom($a_bottom_panel);
258  }
259 
260  public function setVariable(string $variable, $value = ''): void
261  {
262  if ($variable === "LOCATION_CONTENT_STYLESHEET" || $variable === "LOCATION_SYNTAX_STYLESHEET") {
263  $this->addCss($value);
264 
265  return;
266  }
267 
268  $this->legacy_content_template->setVariable(
269  $variable,
270  $this->refinery->kindlyTo()->string()->transform($value)
271  );
272  }
273 
274  public function resetJavascript(): void
275  {
276  $this->gs->layout()->meta()->getJs()->clear();
277  }
278 
279  public function get(string $part = self::DEFAULT_BLOCK): string
280  {
281  return $this->legacy_content_template->get($part);
282  }
283 
284  public function setCurrentBlock(string $blockname = self::DEFAULT_BLOCK): bool
285  {
286  if (in_array($blockname, self::$ignored_blocks)) {
287  return false;
288  }
289 
290  if ($this->blockExists($blockname)) {
291  return $this->legacy_content_template->setCurrentBlock($blockname);
292  }
293  throw new ilTemplateException("block " . var_export($blockname, true) . " not found");
294  }
295 
296  public function touchBlock(string $blockname): bool
297  {
298  if (in_array($blockname, self::$ignored_blocks)) {
299  return false;
300  }
301 
302  if ($this->blockExists($blockname)) {
303  $this->legacy_content_template->touchBlock($blockname);
304  return true;
305  }
306 
307  throw new ilTemplateException("block " . var_export($blockname, true) . " not found");
308  }
309 
310  public function parseCurrentBlock(string $blockname = self::DEFAULT_BLOCK): bool
311  {
312  if (in_array($blockname, self::$ignored_blocks)) {
313  return false; // TODO why is this needed?
314  }
315  if ($this->blockExists($blockname)) {
316  return $this->legacy_content_template->parseCurrentBlock($blockname);
317  }
318 
319  throw new ilTemplateException("block " . var_export($blockname, true) . " not found");
320  }
321 
322  public function addBlockFile(string $var, string $block, string $template_name, ?string $in_module = null): bool
323  {
324  if ($this->blockExists($block)) {
325  $this->legacy_content_template->removeBlockData($block);
326  }
327 
328  return $this->legacy_content_template->addBlockFile($var, $block, $template_name, $in_module);
329  }
330 
331  public function blockExists(string $blockname): bool
332  {
333  if (in_array($blockname, self::$ignored_blocks)) {
334  return false;
335  }
336 
337  return $this->legacy_content_template->blockExists($blockname);
338  }
339 
340  public function loadStandardTemplate(): void
341  {
342  // Nothing to do
343  }
344 
345  public function setLocator(): void
346  {
347  // Nothing to do
348  }
349 
350  public function setPermanentLink(
351  string $a_type,
352  ?int $a_id,
353  string $a_append = "",
354  string $a_target = "",
355  string $a_title = ""
356  ): void {
357  $href = ilLink::_getStaticLink($a_id, $a_type, true, $a_append);
358  PageContentProvider::setPermaLink($href);
359  }
360 
361  public function setTreeFlatIcon(string $a_link, string $a_mode): void
362  {
363  // Nothing to do
364  }
365 
366  public function hideFooter(): void
367  {
368  // Nothing to do
369  }
370 
371  public function setLeftNavContent(string $a_content): void
372  {
373  // Nothing to do, this should be handled in Slates later
374  }
375 
376  public function resetHeaderBlock(bool $a_reset_header_action = true): void
377  {
378  // Nothing to do
379  }
380 
381  public function setLoginTargetPar(string $a_val): void
382  {
383  // Nothing to do
384  }
385 
386  public function getOnLoadCodeForAsynch(): string
387  {
388  // see e.g. bug #26413
389  $js = "";
390  foreach ($this->gs->layout()->meta()->getOnLoadCode()->getItemsInOrderOfDelivery() as $code) {
391  $js .= $code->getContent() . "\n";
392  }
393  if ($js) {
394  return '<script type="text/javascript">' . "\n" .
395  $js .
396  '</script>' . "\n";
397  }
398  return "";
399  }
400 
401  public function fillJavaScriptFiles(bool $a_force = false): void
402  {
403  throw new NotImplementedException("This Method is no longer available in GlobalTemplate");
404  }
405 
406  public function setBodyClass(string $a_class = ""): void
407  {
408  throw new NotImplementedException("This Method is no longer available in GlobalTemplate");
409  }
410 
411  public function clearHeader(): void
412  {
413  throw new NotImplementedException("This Method is no longer available in GlobalTemplate");
414  }
415 
416  public function setTabs(string $a_tabs_html): void
417  {
418  throw new NotImplementedException("This Method is no longer available in GlobalTemplate");
419  }
420 
421  public function setSubTabs(string $a_tabs_html): void
422  {
423  throw new NotImplementedException("This Method is no longer available in GlobalTemplate");
424  }
425 
426  public function getSpecial(
427  string $part = self::DEFAULT_BLOCK,
428  bool $add_error_mess = false,
429  bool $handle_referer = false,
430  bool $add_ilias_footer = false,
431  bool $add_standard_elements = false,
432  bool $a_main_menu = true,
433  bool $a_tabs = true
434  ): string {
435  throw new NotImplementedException();
436  }
437 }
addOnLoadCode(string $a_code, int $a_batch=2)
Add on load code.
static init(?ilGlobalTemplateInterface $template=null)
static getStyleSheetLocation(string $mode="output", string $a_css_name="")
get full style sheet file name (path inclusive) of current user
__construct(Services $gs, UIServices $ui, HTTPServices $http)
static initjQueryUI(?ilGlobalTemplateInterface $a_tpl=null)
inits and adds the jQuery-UI JS-File to the global template (see included_components.txt for included components)
setSubTabs(string $a_tabs_html)
sets subtabs in standard template
printToStdout(string $part=self::DEFAULT_BLOCK, bool $a_fill_tabs=true, bool $a_skip_main_menu=false)
setLoginTargetPar(string $a_val)
Set target parameter for login (public sector).
setCurrentBlock(string $blockname=self::DEFAULT_BLOCK)
Sets the template to the given block.
addBlockFile(string $var, string $block, string $template_name, ?string $in_module=null)
overwrites ITX::addBlockFile
setLeftContent(string $a_html)
Sets content of left column.
setTitle(string $a_title, bool $hidden=false)
Sets title in standard template.
setAlertProperties(array $a_props)
Set alert properties.
addCss(string $a_css_file, string $media="screen")
Add a css file that should be included in the header.
parseCurrentBlock(string $blockname=self::DEFAULT_BLOCK)
Parses the given block.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setLeftNavContent(string $a_content)
Sets content of left navigation column.
static initializeFrontend(ilGlobalTemplateInterface $page)
This exception indicates that an UI component was accepted by the JF but is not backed by a real impl...
hideFooter()
Make the template hide the footer.
setPageFormAction(string $a_action)
Sets the pages form action.
resetHeaderBlock(bool $a_reset_header_action=true)
Reset all header properties: title, icon, description, alerts, action menu.
blockExists(string $blockname)
check if block exists in actual template
addJavaScript(string $a_js_file, bool $a_add_version_parameter=true, int $a_batch=2)
Add a javascript file that should be included in the header.
setHeaderPageTitle(string $a_title)
Sets the title of the page (for browser window).
setTitleIcon(string $a_icon_path, string $a_icon_desc="")
set title icon
static getNewContentStyleSheetLocation(string $mode="output")
get full style sheet file name (path inclusive) of current user
setBodyClass(string $a_class="")
Sets the body-tags class.
setFileUploadRefId(int $a_ref_id)
Enables the file upload into this object by dropping a file.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
Provides fluid interface to RBAC services.
Definition: UIServices.php:24
static http()
Fetches the global http state from ILIAS.
setRightContent(string $a_html)
Sets content of right column.
setTreeFlatIcon(string $a_link, string $a_mode)
Sets a tree or flat icon.
fillJavaScriptFiles(bool $a_force=false)
Probably adds javascript files.
static initjQuery(?ilGlobalTemplateInterface $a_tpl=null)
inits and adds the jQuery JS-File to the global or a passed template
global $DIC
Definition: shib_login.php:22
printToString()
Use this method to get the finally rendered page as string.
static initializeFrontend(ilGlobalTemplateInterface $page)
getSpecial(string $part=self::DEFAULT_BLOCK, bool $add_error_mess=false, bool $handle_referer=false, bool $add_ilias_footer=false, bool $add_standard_elements=false, bool $a_main_menu=true, bool $a_tabs=true)
Renders the page with specific elements enabled.
setHeaderActionMenu(string $a_header)
Set header action menu.
getOnLoadCodeForAsynch()
Get js onload code for ajax calls.
touchBlock(string $blockname)
overwrites ITX::touchBlock.
setOnScreenMessage(string $a_type, string $a_txt, bool $a_keep=false)
Set a message to be displayed to the user.
setDescription(string $a_descr)
Sets description below title in standard template.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
addAdminPanelToolbar(ilToolbarGUI $toolb, bool $a_bottom_panel=true, bool $a_arrow=false)
static _saveUsages()
Store the collected language variable usages in the user session This should be called as late as pos...
setTabs(string $a_tabs_html)
sets tabs in standard template
resetJavascript()
Reset javascript files.
loadStandardTemplate()
This loads the standard template "tpl.adm_content.html" and "tpl.statusline.html" the CONTENT and STA...
setVariable(string $variable, $value='')
Sets the given variable to the given value.
setContent(string $a_html)
Sets content for standard template.
setPermanentLink(string $a_type, ?int $a_id, string $a_append="", string $a_target="", string $a_title="")
Generates and sets a permanent ilias link.
addInlineCss(string $a_css, string $media="screen")
Add a css file that should be included in the header.