19 declare(strict_types=1);
78 string $in_module =
'',
81 bool $a_use_cache =
true 93 $this->ui_service = $DIC->ui();
96 public function addBlockFile(
string $var,
string $block,
string $template_name, ?
string $in_module =
null): bool
98 return $this->
template->addBlockFile($var, $block, $template_name, $in_module);
103 return $this->
template->blockExists($block_name);
108 $this->
template->removeBlockData($block_name);
111 public function setVariable(
string $variable,
string $value =
''): void
113 $this->
template->setVariable($variable, $value);
118 return $this->
template->setCurrentBlock($block_name);
123 $this->
template->touchBlock($block_name);
128 return $this->
template->parseCurrentBlock($block_name);
133 if (!empty($page_form_action)) {
140 if (!empty($main_content)) {
152 if (!empty($image_src)) {
153 $this->banner_image_src = $image_src;
162 public function setTitle(
string $title,
bool $is_hidden =
false): void
164 if (!empty($title)) {
166 $this->is_title_hidden = $is_hidden;
182 if (!empty($header_action)) {
204 if (!empty($content)) {
205 $this->right_content = $content;
211 if (!empty($content)) {
212 $this->left_content = $content;
218 if (!empty($filter)) {
226 $this->
template->setCurrentBlock(
"filter");
227 $this->
template->setVariable(
"FILTER", trim($this->
filter));
228 $this->
template->parseCurrentBlock();
234 if (!empty($icon_path)) {
241 if (!empty($icon_desc)) {
248 $this->file_upload_ref_id = $upload_ref_id;
254 throw new InvalidArgumentException(
"Type '$type' is not declared in " . self::class .
"::MESSAGE_TYPES and is therefore invalid.");
266 return $this->
template->get($part);
269 public function renderPage(
string $part,
bool $a_fill_tabs): string
277 if ($this->template->blockExists(
"content")) {
291 if ($this->template->blockExists(
"content")) {
292 $this->
template->setCurrentBlock(
"content");
295 $this->
template->parseCurrentBlock();
300 $html = $this->
template->getUnmodified();
302 $html = $this->
template->getUnmodified($part);
308 $component_factory = $DIC[
"component.factory"];
309 foreach ($component_factory->getActivePluginsInSlot(
"uihk") as $ui_plugin) {
310 $gui_class = $ui_plugin->getUIClassInstance();
312 $resp = $gui_class->getHTML(
323 $html = $gui_class->modifyHTML($html,
$resp);
344 if (count($messages) > 0) {
345 $this->
template->setVariable(
"MESSAGE", $this->ui_service->renderer()->render($messages));
351 $box_factory = $this->ui_service->factory()->messageBox();
354 $box = $box_factory->info($message);
357 $box = $box_factory->success($message);
360 $box = $box_factory->confirmation($message);
363 $box = $box_factory->failure($message);
378 return $this->messages[$type] ??
null;
385 $ilTabs = $DIC[
"ilTabs"];
387 if ($this->template->blockExists(
"tabs_outer_start")) {
388 $this->sub_tabs_html = $ilTabs->getSubTabHTML();
389 $this->tabs_html = $ilTabs->getHTML(
true);
402 $lng = $DIC->language();
404 $header_tpl =
new ilTemplate(
'tpl.il_header.html',
true,
true);
407 if (
null !== $this->banner_image_src && $this->template->blockExists(
"banner_bl")) {
408 $header_tpl->setCurrentBlock(
"banner_bl");
409 $header_tpl->setVariable(
"BANNER_URL", $this->banner_image_src);
411 $header_tpl->parseCurrentBlock();
414 if (
null !== $this->icon_path) {
415 $header_tpl->setCurrentBlock(
"header_image");
416 $header_tpl->setVariable(
"IMG_HEADER", $this->icon_path);
417 $header_tpl->parseCurrentBlock();
421 if (
null !== $this->title) {
423 $header_tpl->setVariable(
"HEADER", $title);
424 if ($this->is_title_hidden) {
425 $header_tpl->touchBlock(
"hidden_title");
431 if ($header && !$this->is_title_hidden) {
432 $header_tpl->setCurrentBlock(
"header_image");
433 $header_tpl->parseCurrentBlock();
436 if (
null !== $this->title_desc) {
437 $header_tpl->setCurrentBlock(
"header_desc");
438 $header_tpl->setVariable(
"H_DESCRIPTION", $this->title_desc);
439 $header_tpl->parseCurrentBlock();
442 if (
null !== $this->header_action) {
443 $header_tpl->setCurrentBlock(
"head_action_inner");
444 $header_tpl->setVariable(
"HEAD_ACTION", $this->header_action);
445 $header_tpl->parseCurrentBlock();
448 foreach ($this->title_alerts as $alert) {
449 $header_tpl->setCurrentBlock(
'header_alert');
450 if (!(
bool) ($alert[
'propertyNameVisible'] ??
false)) {
451 $this->
template->setVariable(
'H_PROP', $alert[
'property'] .
':');
453 $header_tpl->setVariable(
'H_VALUE', $alert[
'value']);
454 $header_tpl->parseCurrentBlock();
458 if ($this->file_upload_ref_id !==
null) {
460 $this->file_upload_ref_id,
464 $this->
template->setVariable(
465 "IL_DROPZONE_HEADER",
466 $file_upload->getDropzoneHtml()
469 $this->
template->setVariable(
"IL_HEADER", $header_tpl->get());
476 if (!$this->template->blockExists(
"center_col_width")) {
481 case (
null !== $this->left_content &&
null !== $this->right_content):
482 $center_column_class =
'col-sm-6';
485 case (
null !== $this->left_content ||
null !== $this->right_content):
486 $center_column_class =
'col-sm-9';
490 $center_column_class =
'col-sm-12';
494 if (
null !== $this->left_content) {
495 $center_column_class .=
" col-sm-push-3";
498 $this->
template->setCurrentBlock(
"center_col_width");
499 $this->
template->setVariable(
"CENTER_COL", $center_column_class);
500 $this->
template->parseCurrentBlock();
505 if (
null !== $this->main_content) {
506 $this->
template->setVariable(
"ADM_CONTENT", trim($this->main_content));
512 if (
null !== $this->left_content) {
513 $this->
template->setCurrentBlock(
"left_column");
514 $this->
template->setVariable(
"LEFT_CONTENT", trim($this->left_content));
517 ?
"col-sm-3 col-sm-pull-9" 518 :
"col-sm-3 col-sm-pull-6";
520 $this->
template->setVariable(
"LEFT_COL_CLASS", $left_col_class);
521 $this->
template->parseCurrentBlock();
527 if (
null !== $this->right_content) {
528 $this->
template->setCurrentBlock(
"right_column");
529 $this->
template->setVariable(
"RIGHT_CONTENT", trim($this->right_content));
530 $this->
template->parseCurrentBlock();
537 $lng = $DIC->language();
539 if (
null === $this->admin_panel_commands_toolbar) {
544 if ($this->should_display_admin_panel_arrow) {
550 $this->
template->setCurrentBlock(
"adm_view_components");
551 $this->
template->setVariable(
"ADM_PANEL1", $current_toolbar->getHTML());
552 $this->
template->parseCurrentBlock();
555 if ($this->is_admin_panel_for_bottom) {
556 $this->
template->setCurrentBlock(
"adm_view_components2");
559 if ($this->should_display_admin_panel_arrow) {
563 $current_toolbar->setId($current_toolbar->getId() .
"2");
564 $this->
template->setVariable(
"ADM_PANEL2", $current_toolbar->getHTML());
565 $this->
template->parseCurrentBlock();
571 if (
null !== $this->page_form_action) {
572 $this->
template->setCurrentBlock(
"page_form_start");
573 $this->
template->setVariable(
"PAGE_FORM_ACTION", $this->page_form_action);
574 $this->
template->parseCurrentBlock();
575 $this->
template->touchBlock(
"page_form_end");
582 $ilToolbar = $DIC[
"ilToolbar"];
584 $toolbar_html = $ilToolbar->getHTML();
585 if (!empty($toolbar_html)) {
586 $this->
template->setCurrentBlock(
"toolbar_buttons");
587 $this->
template->setVariable(
"BUTTONS", $toolbar_html);
588 $this->
template->parseCurrentBlock();
594 if ($this->template->blockExists(
"tabs_outer_start")) {
595 $this->
template->touchBlock(
"tabs_outer_start");
596 $this->
template->touchBlock(
"tabs_outer_end");
597 $this->
template->touchBlock(
"tabs_inner_start");
598 $this->
template->touchBlock(
"tabs_inner_end");
600 if (
null !== $this->tabs_html) {
601 $this->
template->setVariable(
"TABS", $this->tabs_html);
604 if (
null !== $this->sub_tabs_html) {
605 $this->
template->setVariable(
"SUB_TABS", $this->sub_tabs_html);
setTitle(string $title, bool $is_hidden=false)
static get(string $a_var)
ilToolbarGUI $admin_panel_commands_toolbar
setHeaderAction(string $header_action)
setLeftContent(string $content)
setBanner(string $image_src)
touchBlock(string $block_name)
setIconDesc(string $icon_desc)
static stripScriptHTML(string $a_str, string $a_allow="", bool $a_rm_js=true)
parseCurrentBlock(string $block_name=ilGlobalTemplateInterface::DEFAULT_BLOCK)
setMainContent(string $main_content)
setTitleDesc(string $title_desc)
blockExists(string $block_name)
removeBlockData(string $block_name)
setRightContent(string $content)
setAdminPanelArrow(bool $should_display_admin_panel_arrow)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
setOnScreenMessage(string $type, string $message, bool $should_keep=false)
setPageFormAction(string $page_form_action)
renderPage(string $part, bool $a_fill_tabs)
getMessageTextForType(string $type)
addBlockFile(string $var, string $block, string $template_name, ?string $in_module=null)
static getImagePath(string $image_name, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
setAdminPanelBottom(bool $is_admin_panel_for_bottom)
ILIAS DI UIServices $ui_service
getMessageBox(string $type, string $message)
setAdminPanelCommandsToolbar(ilToolbarGUI $admin_panel_commands_toolbar)
setTitleAlerts(array $title_alerts)
setFileUploadRefId(int $upload_ref_id)
static _saveUsages()
Store the collected language variable usages in the user session This should be called as late as pos...
setIconPath(string $icon_path)
setFilter(string $filter)
filter(string $filter_id, $class_path, string $cmd, bool $activated=true, bool $expanded=true)
static clear(string $a_var)
bool $should_display_admin_panel_arrow
__construct(string $file, bool $flag1, bool $flag2, string $in_module='', string $vars=ilGlobalTemplateInterface::DEFAULT_BLOCK, bool $plugin=false, bool $a_use_cache=true)
setCurrentBlock(string $block_name=ilGlobalTemplateInterface::DEFAULT_BLOCK)
setVariable(string $variable, string $value='')
static set(string $a_var, $a_val)
Set a value.
setHeaderPageTitle(string $header_page_title)
bool $is_admin_panel_for_bottom