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