19 declare(strict_types=1);
83 string $in_module =
'',
86 bool $a_use_cache =
true 98 $this->ui_service = $DIC->ui();
101 public function addBlockFile(
string $var,
string $block,
string $template_name,
string $in_module = null): bool
103 return $this->
template->addBlockFile($var, $block, $template_name, $in_module);
108 return $this->
template->blockExists($block_name);
113 $this->
template->removeBlockData($block_name);
116 public function setVariable(
string $variable,
string $value =
''): void
118 $this->
template->setVariable($variable, $value);
123 return $this->
template->setCurrentBlock($block_name);
128 $this->
template->touchBlock($block_name);
133 return $this->
template->parseCurrentBlock($block_name);
138 if (!empty($page_form_action)) {
145 if (!empty($main_content)) {
152 if (!empty($lightbox_html)) {
153 $this->lightbox[
$id] = $lightbox_html;
164 if (!empty($image_src)) {
165 $this->banner_image_src = $image_src;
174 public function setTitle(
string $title,
bool $is_hidden =
false): void
176 if (!empty($title)) {
178 $this->is_title_hidden = $is_hidden;
194 if (!empty($header_action)) {
216 if (!empty($content)) {
217 $this->right_content = $content;
223 if (!empty($content)) {
224 $this->left_content = $content;
230 if (!empty($filter)) {
237 if (null !== $this->
filter) {
238 $this->
template->setCurrentBlock(
"filter");
239 $this->
template->setVariable(
"FILTER", trim($this->
filter));
240 $this->
template->parseCurrentBlock();
246 if (!empty($icon_path)) {
253 if (!empty($icon_desc)) {
260 $this->file_upload_ref_id = $upload_ref_id;
266 throw new InvalidArgumentException(
"Type '$type' is not declared in " . self::class .
"::MESSAGE_TYPES and is therefore invalid.");
278 return $this->
template->get($part);
281 public function renderPage(
string $part,
bool $a_fill_tabs): string
289 if ($this->template->blockExists(
"content")) {
303 if ($this->template->blockExists(
"content")) {
304 $this->
template->setCurrentBlock(
"content");
308 $this->
template->parseCurrentBlock();
313 $html = $this->
template->getUnmodified();
315 $html = $this->
template->getUnmodified($part);
321 $component_factory = $DIC[
"component.factory"];
322 foreach ($component_factory->getActivePluginsInSlot(
"uihk") as $ui_plugin) {
323 $gui_class = $ui_plugin->getUIClassInstance();
325 $resp = $gui_class->getHTML(
336 $html = $gui_class->modifyHTML($html,
$resp);
357 if (count($messages) > 0) {
358 $this->
template->setVariable(
"MESSAGE", $this->ui_service->renderer()->render($messages));
364 $box_factory = $this->ui_service->factory()->messageBox();
367 $box = $box_factory->info($message);
370 $box = $box_factory->success($message);
373 $box = $box_factory->confirmation($message);
376 $box = $box_factory->failure($message);
391 return $this->messages[
$type] ?? null;
398 $ilTabs = $DIC[
"ilTabs"];
400 if ($this->template->blockExists(
"tabs_outer_start")) {
401 $this->sub_tabs_html = $ilTabs->getSubTabHTML();
402 $this->tabs_html = $ilTabs->getHTML(
true);
415 $lng = $DIC->language();
417 $header_tpl =
new ilTemplate(
'tpl.il_header.html',
true,
true);
420 if (null !== $this->banner_image_src && $this->template->blockExists(
"banner_bl")) {
421 $header_tpl->setCurrentBlock(
"banner_bl");
422 $header_tpl->setVariable(
"BANNER_URL", $this->banner_image_src);
424 $header_tpl->parseCurrentBlock();
427 if (null !== $this->icon_path) {
428 $header_tpl->setCurrentBlock(
"header_image");
429 $header_tpl->setVariable(
"IMG_HEADER", $this->icon_path);
430 $header_tpl->parseCurrentBlock();
434 if (null !== $this->title) {
436 $header_tpl->setVariable(
"HEADER", $title);
437 if ($this->is_title_hidden) {
438 $header_tpl->touchBlock(
"hidden_title");
444 if ($header && !$this->is_title_hidden) {
445 $header_tpl->setCurrentBlock(
"header_image");
446 $header_tpl->parseCurrentBlock();
449 if (null !== $this->title_desc) {
450 $header_tpl->setCurrentBlock(
"header_desc");
451 $header_tpl->setVariable(
"H_DESCRIPTION", $this->title_desc);
452 $header_tpl->parseCurrentBlock();
455 if (null !== $this->header_action) {
456 $header_tpl->setCurrentBlock(
"head_action_inner");
457 $header_tpl->setVariable(
"HEAD_ACTION", $this->header_action);
458 $header_tpl->parseCurrentBlock();
461 foreach ($this->title_alerts as $alert) {
462 $header_tpl->setCurrentBlock(
'header_alert');
463 if (!(
bool) ($alert[
'propertyNameVisible'] ??
false)) {
464 $this->
template->setVariable(
'H_PROP', $alert[
'property'] .
':');
466 $header_tpl->setVariable(
'H_VALUE', $alert[
'value']);
467 $header_tpl->parseCurrentBlock();
471 if ($this->file_upload_ref_id !== null) {
473 $this->file_upload_ref_id,
477 $this->
template->setVariable(
478 "IL_DROPZONE_HEADER",
479 $file_upload->getDropzoneHtml()
482 $this->
template->setVariable(
"IL_HEADER", $header_tpl->get());
489 if (!$this->template->blockExists(
"center_col_width")) {
494 case (null !== $this->left_content && null !== $this->right_content):
495 $center_column_class =
'col-sm-6';
498 case (null !== $this->left_content || null !== $this->right_content):
499 $center_column_class =
'col-sm-9';
503 $center_column_class =
'col-sm-12';
507 if (null !== $this->left_content) {
508 $center_column_class .=
" col-sm-push-3";
511 $this->
template->setCurrentBlock(
"center_col_width");
512 $this->
template->setVariable(
"CENTER_COL", $center_column_class);
513 $this->
template->parseCurrentBlock();
518 if (null !== $this->main_content) {
519 $this->
template->setVariable(
"ADM_CONTENT", trim($this->main_content));
525 if (null !== $this->left_content) {
526 $this->
template->setCurrentBlock(
"left_column");
527 $this->
template->setVariable(
"LEFT_CONTENT", trim($this->left_content));
530 ?
"col-sm-3 col-sm-pull-9" 531 :
"col-sm-3 col-sm-pull-6";
533 $this->
template->setVariable(
"LEFT_COL_CLASS", $left_col_class);
534 $this->
template->parseCurrentBlock();
540 if (null !== $this->right_content) {
541 $this->
template->setCurrentBlock(
"right_column");
542 $this->
template->setVariable(
"RIGHT_CONTENT", trim($this->right_content));
543 $this->
template->parseCurrentBlock();
550 $lng = $DIC->language();
552 if (null === $this->admin_panel_commands_toolbar) {
559 if ($this->should_display_admin_panel_arrow) {
566 $this->
template->setCurrentBlock(
"adm_view_components");
567 $this->
template->setVariable(
"ADM_PANEL1", $current_toolbar->getHTML());
568 $this->
template->parseCurrentBlock();
571 if ($this->is_admin_panel_for_bottom) {
572 $this->
template->setCurrentBlock(
"adm_view_components2");
575 if ($this->should_display_admin_panel_arrow) {
579 $current_toolbar->setId($current_toolbar->getId() .
"2");
580 $this->
template->setVariable(
"ADM_PANEL2", $current_toolbar->getHTML());
581 $this->
template->parseCurrentBlock();
587 if (null !== $this->page_form_action) {
588 $this->
template->setCurrentBlock(
"page_form_start");
589 $this->
template->setVariable(
"PAGE_FORM_ACTION", $this->page_form_action);
590 $this->
template->parseCurrentBlock();
591 $this->
template->touchBlock(
"page_form_end");
598 $ilToolbar = $DIC[
"ilToolbar"];
600 $toolbar_html = $ilToolbar->getHTML();
601 if (!empty($toolbar_html)) {
602 $this->
template->setCurrentBlock(
"toolbar_buttons");
603 $this->
template->setVariable(
"BUTTONS", $toolbar_html);
604 $this->
template->parseCurrentBlock();
610 if ($this->template->blockExists(
"tabs_outer_start")) {
611 $this->
template->touchBlock(
"tabs_outer_start");
612 $this->
template->touchBlock(
"tabs_outer_end");
613 $this->
template->touchBlock(
"tabs_inner_start");
614 $this->
template->touchBlock(
"tabs_inner_end");
616 if (null !== $this->tabs_html) {
617 $this->
template->setVariable(
"TABS", $this->tabs_html);
620 if (null !== $this->sub_tabs_html) {
621 $this->
template->setVariable(
"SUB_TABS", $this->sub_tabs_html);
628 $this->
template->setVariable(
'LIGHTBOX', implode(
'', $this->lightbox));
static get(string $a_var)
setPageFormAction(string $page_form_action)
ilToolbarGUI $admin_panel_commands_toolbar
setAdminPanelBottom(bool $is_admin_panel_for_bottom)
setAdminPanelCommandsToolbar(ilToolbarGUI $admin_panel_commands_toolbar)
setTitleAlerts(array $title_alerts)
addLightbox(string $lightbox_html, string $id)
static getImagePath(string $img, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
setFileUploadRefId(int $upload_ref_id)
static stripScriptHTML(string $a_str, string $a_allow="", bool $a_rm_js=true)
renderPage(string $part, bool $a_fill_tabs)
getMessageTextForType(string $type)
setMainContent(string $main_content)
setHeaderPageTitle(string $header_page_title)
removeBlockData(string $block_name)
setIconPath(string $icon_path)
setTitleDesc(string $title_desc)
bool $should_display_admin_panel_arrow
addBlockFile(string $var, string $block, string $template_name, string $in_module=null)
setCurrentBlock(string $block_name=ilGlobalTemplateInterface::DEFAULT_BLOCK)
setRightContent(string $content)
setVariable(string $variable, string $value='')
bool $is_admin_panel_for_bottom
touchBlock(string $block_name)
setIconDesc(string $icon_desc)
getMessageBox(string $type, string $message)
ILIAS DI UIServices $ui_service
setLeftContent(string $content)
setTitle(string $title, bool $is_hidden=false)
setHeaderAction(string $header_action)
setFilter(string $filter)
setOnScreenMessage(string $type, string $message, bool $should_keep=false)
blockExists(string $block_name)
setAdminPanelArrow(bool $should_display_admin_panel_arrow)
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
static _saveUsages()
Store the collected language variable usages in the user session This should be called as late as pos...
parseCurrentBlock(string $block_name=ilGlobalTemplateInterface::DEFAULT_BLOCK)
__construct(string $file, bool $flag1, bool $flag2, string $in_module='', string $vars=ilGlobalTemplateInterface::DEFAULT_BLOCK, bool $plugin=false, bool $a_use_cache=true)
setBanner(string $image_src)
static clear(string $a_var)
static set(string $a_var, $a_val)
Set a value.