65 protected \ILIAS\DI\UIServices
$ui;
70 protected \ILIAS\Container\Content\BlockSessionRepository
$block_repo;
73 \
ILIAS\Container\Content\ItemPresentationManager $item_presentation,
74 bool $a_enable_manage_select_all =
false,
75 bool $a_enable_multi_download =
false,
76 bool $a_active_block_ordering =
false,
77 array $a_block_custom_positions = [],
80 bool $admin_panel =
false 86 $this->
lng = $DIC->language();
88 $this->
ui = $DIC->ui();
89 $this->obj_definition = $DIC[
"objDefinition"];
90 $this->enable_manage_select_all = $a_enable_manage_select_all;
91 $this->enable_multi_download = $a_enable_multi_download;
92 $this->active_block_ordering = $a_active_block_ordering;
93 $this->block_custom_pos = $a_block_custom_positions;
94 $this->view_mode = $a_view_mode;
96 $obj = $container_gui_obj;
97 $this->container_gui = $obj;
98 $this->
ctrl = $DIC->ctrl();
99 $this->
user = $DIC->user();
100 $this->
access = $DIC->access();
102 $this->item_renderer = $DIC->container()
107 $this->container_gui,
110 $this->objective_renderer = $DIC->container()
115 $this->container_gui,
119 $this->block_repo = $DIC
125 $this->item_manager = $DIC
130 ->items($this->container_gui->getObject());
135 $this->block_prefix_closure =
$f;
140 $this->block_postfix_closure =
$f;
145 $this->item_hidden_closure =
$f;
159 ?
string $a_prefix =
null,
160 ?
string $a_postfix =
null 162 if ($a_type !==
"itgr" &&
164 $this->type_blocks[$a_type] = [
165 "prefix" => $a_prefix
166 ,
"postfix" => $a_postfix
175 return array_key_exists($a_type, $this->type_blocks);
185 ?
string $a_actions =
null,
189 $this->custom_blocks[$a_id] = [
190 "caption" => $a_caption
191 ,
"actions" => $a_actions
205 return array_key_exists($a_id, $this->custom_blocks);
231 $this->hidden_items[$a_id] =
true;
247 unset($this->item_ids[$a_id], $this->hidden_items[$a_id]);
249 foreach (array_keys($this->items) as $item_id) {
250 $parts = explode(self::UNIQUE_SEPARATOR, $item_id);
251 if (array_pop(
$parts) == $a_id) {
252 unset($this->items[$item_id]);
256 foreach ($this->block_items as $block_id => $items) {
257 foreach ($items as $idx => $item_id) {
258 $parts = explode(self::UNIQUE_SEPARATOR, $item_id);
259 if (array_pop(
$parts) == $a_id) {
260 unset($this->block_items[$block_id][$idx]);
261 if (!count($this->block_items[$block_id])) {
262 unset($this->block_items[$block_id]);
277 return (array_key_exists($a_id, $this->item_ids) ||
278 array_key_exists($a_id, $this->hidden_items));
293 bool $a_force =
false 295 if ($a_item_type !==
"itgr" &&
297 (!$this->
hasItem($a_item_id) || $a_force)) {
298 if (is_string($a_item_html) && trim($a_item_html) ===
"") {
307 $uniq_id = $a_block_id . self::UNIQUE_SEPARATOR . $a_item_id;
309 $this->items[$uniq_id] = [
310 "type" => $a_item_type
311 ,
"html" => $a_item_html
316 $this->block_items[$a_block_id][] = $uniq_id;
327 $this->item_ids[$a_item_id] =
true;
336 $this->show_more[] = $a_block_id;
342 bool $a_active =
false 344 $this->details[$a_level] = [
346 ,
"active" => $a_active
368 $this->block_pos[$a_block_id] = $a_pos;
398 return $block_tpl->get();
407 return $block_tpl->get();
420 return $block_tpl->get();
433 if (is_array($this->block_custom_pos) && count($this->block_custom_pos)) {
435 $this->block_pos = [];
436 foreach ($this->block_custom_pos as $idx => $block_id) {
438 $this->block_pos[$block_id] = $idx;
443 if (count($this->block_pos)) {
445 $last = max($this->block_pos);
446 foreach (array_keys($tmp) as $block_id) {
447 if (!array_key_exists($block_id, $this->block_pos)) {
448 $this->block_pos[$block_id] = ++$last;
454 $this->block_pos = $tmp;
459 $last = count($this->block_pos)
460 ? max($this->block_pos)
462 foreach (array_keys($this->custom_blocks) as $block_id) {
463 if (!array_key_exists($block_id, $this->block_pos)) {
464 $this->block_pos[$block_id] = ++$last;
467 foreach (array_keys($this->type_blocks) as $block_id) {
468 if (!array_key_exists($block_id, $this->block_pos)) {
469 $this->block_pos[$block_id] = ++$last;
473 asort($this->block_pos);
474 return array_keys($this->block_pos);
483 bool $a_is_single =
false,
484 bool $is_exhausted =
false 487 return $this->
renderHelperGeneric($a_block_tpl, $a_block_id, $this->custom_blocks[$a_block_id], $a_is_single, $is_exhausted);
495 bool $a_is_single =
false,
496 bool $is_exhausted =
false 499 $block = $this->type_blocks[$a_type];
500 $block[
"type"] = $a_type;
501 return $this->
renderHelperGeneric($a_block_tpl, $a_type, $block, $a_is_single, $is_exhausted);
510 if ($item_group->getListPresentation() !==
"") {
511 $view_mode = ($item_group->getListPresentation() ===
"tile")
521 return $item_group->getListPresentation();
531 bool $a_is_single =
false,
532 bool $is_exhausted =
false 535 if (!in_array($a_block_id, $this->rendered_blocks)) {
536 $this->rendered_blocks[] = $a_block_id;
538 if (isset($this->block_items[$a_block_id]) && is_array($this->block_items[$a_block_id])) {
539 foreach ($this->block_items[$a_block_id] as $item_id) {
540 if (isset($this->items[$item_id][
"type"])) {
541 $block_types[] = $this->items[$item_id][
"type"];
552 if (is_numeric($a_block_id)) {
554 if ($item_group->getListPresentation() !==
"") {
555 $view_mode = ($item_group->getListPresentation() ===
"tile" && !$this->active_block_ordering && !
$this->admin_panel)
558 $tile_size = $item_group->getTileSize();
564 if ((isset($this->block_items[$a_block_id]) && is_array($this->block_items[$a_block_id])) ||
565 is_numeric($a_block_id)) {
573 $a_block[
"type"] ??
'',
574 $a_block[
"caption"] ??
'',
575 array_unique($block_types),
576 $a_block[
"actions"] ??
'',
578 $a_block[
"data"] ?? []
582 if (isset($a_block[
"prefix"]) && $a_block[
"prefix"]) {
587 if (isset($this->block_items[$a_block_id])) {
588 foreach ($this->block_items[$a_block_id] as $item_id) {
590 $this->
addStandardRow($a_block_tpl, $this->items[$item_id][
"html"], (
int) $item_id);
592 $cards[] = $this->items[$item_id][
"html"];
598 if (isset($a_block[
"postfix"]) && $a_block[
"postfix"]) {
604 $f = $this->
ui->factory();
608 switch ($tile_size) {
610 $deck =
$f->deck($cards)->withSmallCardsSize();
614 $deck =
$f->deck($cards)->withLargeCardsSize();
618 $deck =
$f->deck($cards)->withExtraLargeCardsSize();
622 $deck =
$f->deck($cards)->withFullSizedCardsSize();
626 $deck =
$f->deck($cards)->withNormalCardsSize();
639 $ctrl->
setParameter($this->container_gui,
"type", $a_block_id);
640 $url = $ctrl->
getLinkTarget($this->container_gui,
"renderBlockAsynch",
"",
true);
643 $f = $this->
ui->factory();
645 $button =
$f->button()->standard($this->
lng->txt(
"cont_show_more"),
"")
647 ->withOnLoadCode(
function (
$id) use ($a_block_id,
$url) {
648 return "il.Container.initShowMore('$id', '$a_block_id', '" .
$url .
"');";
669 return new ilTemplate(
"tpl.container_list_block.html",
true,
true,
"components/ILIAS/Container");
681 ?array $a_types_in_block =
null,
682 string $a_commands_html =
"",
683 string $a_order_id =
"",
690 $a_tpl->
setVariable(
"CB_ID",
' id="bl_cntr_' . (++$this->bl_cnt) .
'"');
692 if ($this->enable_manage_select_all) {
694 } elseif ($this->enable_multi_download) {
696 $a_types_in_block = [$a_type];
698 foreach ($a_types_in_block as $type) {
706 if ($a_text ===
"" && $a_type !==
"") {
707 if (!$objDefinition->isPlugin($a_type)) {
708 $title = $lng->
txt(
"objs_" . $a_type);
711 $title = $pl->txt(
"objs_" . $a_type);
717 if (is_array($a_data)) {
718 foreach ($a_data as $k => $v) {
730 if ($a_type !==
"" &&
$ilSetting->get(
"icon_position_in_lists") !==
"item_rows") {
740 if ($a_order_id !==
"") {
741 $a_tpl->
setVariable(
"BLOCK_HEADER_ORDER_NAME",
"position[blocks][" . $a_order_id .
"]");
742 $a_tpl->
setVariable(
"BLOCK_HEADER_ORDER_NUM", (++$this->order_cnt) * 10);
745 $presentation_title = $title;
747 if (trim($title) ===
"") {
748 $presentation_title = $this->
lng->txt(
"cont_no_title");
749 $sr_only =
"sr-only";
751 $a_tpl->
setVariable(
"BLOCK_HEADER_CONTENT", $presentation_title);
753 $a_tpl->
setVariable(
"CHR_COMMANDS", $a_commands_html);
764 $a_tpl->
setVariable(
"ROW_ID",
'id="item_row_' . $a_ref_id .
'"');
785 $a_tpl->
setVariable(
"CHECKBOXNAME",
"bl_cb_" . $this->bl_cnt);
786 $a_tpl->
setVariable(
"SEL_ALL_PARENT",
"bl_cntr_" . $this->bl_cnt);
787 $a_tpl->
setVariable(
"SEL_ALL_PARENT",
"bl_cntr_" . $this->bl_cnt);
803 return [
"fold",
"file"];
810 if (count($this->details)) {
828 return $this->container_gui->getContainerPageHTML();
833 if ($this->container_gui->isActiveAdministrationPanel()) {
836 if ($this->item_manager->getExpanded($a_item_id) !==
null) {
837 return $this->item_manager->getExpanded($a_item_id);
846 \
ILIAS\Container\Content\ItemBlock\ItemBlockSequence $sequence
854 foreach($this->item_presentation->getAllRefIds() as
$ref_id) {
855 $rd = $this->item_presentation->getRawDataByRefId(
$ref_id);
856 $preloader->addItem($rd[
"obj_id"], $rd[
"type"],
$ref_id);
857 if ($rd[
"type"] ===
"sess") {
859 foreach ($ev_items as $ev_item) {
860 $preloader->addItem((
int) $ev_item[
"obj_id"], $ev_item[
"type"], $ev_item[
"ref_id"]);
864 $preloader->preload();
866 $embedded_block_ids = $this->item_presentation->getPageEmbeddedBlockIds();
867 foreach ($sequence->getBlocks() as $block) {
869 $force_item_even_if_already_rendered =
false;
870 if ($block->getBlock() instanceof \ILIAS\Container\Content\ItemGroupBlock) {
871 $block_id = (string) $block->getBlock()->getRefId();
872 $force_item_even_if_already_rendered =
true;
874 if ($block->getBlock() instanceof \ILIAS\Container\Content\TypeBlock) {
875 $block_id = $block->getBlock()->getType();
876 if ($block->getPageEmbedded()) {
877 $force_item_even_if_already_rendered =
true;
880 if ($block->getBlock() instanceof \ILIAS\Container\Content\SessionBlock) {
883 if ($block->getBlock() instanceof \ILIAS\Container\Content\OtherBlock) {
884 $block_id =
"_other";
886 if ($block->getBlock() instanceof \ILIAS\Container\Content\ObjectivesBlock) {
894 if ($block->getBlock() instanceof \ILIAS\Container\Content\ItemGroupBlock) {
898 if ($block->getBlock() instanceof \ILIAS\Container\Content\OtherBlock) {
899 $title = $this->item_presentation->filteredSubtree()
900 ? $this->
lng->txt(
"cont_found_objects")
901 : $this->
lng->txt(
"content");
904 if ($block->getBlock() instanceof \ILIAS\Container\Content\TypeBlock ||
905 $block->getBlock() instanceof \ILIAS\Container\Content\SessionBlock) {
914 foreach ($block->getItemRefIds() as
$ref_id) {
922 $item_data = $this->item_presentation->getRawDataByRefId(
$ref_id);
924 if ($this->container_gui->isActiveAdministrationPanel()) {
927 $item_group_list_presentation =
"";
928 if ($block->getBlock() instanceof \ILIAS\Container\Content\ItemGroupBlock) {
930 if (!$this->admin_panel && !$this->active_block_ordering) {
931 $item_group_list_presentation =
"tile";
935 if (!$this->admin_panel && !$this->active_block_ordering) {
936 $item_group_list_presentation =
"list";
940 $html = $this->item_renderer->renderItem(
945 $item_group_list_presentation,
947 $this->item_presentation->isActiveItemOrdering(),
956 $force_item_even_if_already_rendered
962 if ($block->getPageEmbedded()) {
963 if ($block->getBlock() instanceof \ILIAS\Container\Content\TypeBlock ||
964 $block->getBlock() instanceof \ILIAS\Container\Content\SessionBlock) {
965 $page_html = preg_replace(
966 '~\[list-' . $block->getId() .
'\]~i',
971 } elseif ($block->getBlock() instanceof \ILIAS\Container\Content\ItemGroupBlock) {
972 $page_html = preg_replace(
973 '~\[item-group-' . $block->getId() .
'\]~i',
978 } elseif ($block->getBlock() instanceof \ILIAS\Container\Content\OtherBlock) {
979 $page_html = preg_replace(
980 '~\[list-_other\]~i',
985 } elseif ($block->getBlock() instanceof \ILIAS\Container\Content\ObjectivesBlock) {
986 $page_html = preg_replace(
988 $this->objective_renderer->renderObjectives(),
994 if ($block->getBlock() instanceof \ILIAS\Container\Content\ItemGroupBlock ||
995 $block->getBlock() instanceof \ILIAS\Container\Content\OtherBlock) {
1001 if ($block->getBlock() instanceof \ILIAS\Container\Content\TypeBlock ||
1002 $block->getBlock() instanceof \ILIAS\Container\Content\SessionBlock) {
1008 if ($block->getBlock() instanceof \ILIAS\Container\Content\ObjectivesBlock) {
1009 $this->objective_renderer->renderObjectives();
1010 $block_tpl->setVariable(
1012 $this->objective_renderer->getContent()
1021 foreach ($this->item_presentation->getPageEmbeddedBlockIds() as
$id) {
1022 if (is_numeric(
$id)) {
1023 $page_html = preg_replace(
1024 '~\[item-group-' .
$id .
'\]~i',
1029 $page_html = preg_replace(
1030 '~\[list-' .
$id .
'\]~i',
1039 return $page_html . $block_tpl->get();
1049 $item_data = $this->item_presentation->getRawDataByRefId((
int) $block_id);
1050 $item_list_gui = $this->item_renderer->getItemGUI($item_data);
1083 $item_list_gui->enableNotes(
false);
1084 $item_list_gui->enableTags(
false);
1085 $item_list_gui->enableComments(
false);
1086 $item_list_gui->enableTimings(
false);
1087 $item_list_gui->initItem(
1088 (
int) $item_data[
"ref_id"],
1089 (
int) $item_data[
"obj_id"],
1091 $item_data[
"title"],
1092 $item_data[
"description"]
1094 $commands_html = $item_list_gui->getCommandsHTML();
1098 $beh = $item_group->getBehaviour();
1099 $stored_val = $this->block_repo->getProperty(
1100 "itgr_" . $item_data[
"ref_id"],
1101 $this->
user->getId(),
1105 $beh = ($stored_val ===
"1")
1111 "behaviour" => $beh,
1112 "store-url" =>
"./ilias.php?baseClass=ilcontainerblockpropertiesstoragegui&cmd=store" .
1113 "&cont_block_id=itgr_" . $item_data[
'ref_id']
1116 !$this->container_gui->isActiveAdministrationPanel()) {
1125 if ($this->block_prefix_closure instanceof
Closure) {
1127 return (
string)
$c($block_id);
1134 if ($this->block_postfix_closure instanceof
Closure) {
1136 return (
string)
$c($block_id);
1143 if ($this->item_hidden_closure instanceof
Closure) {
1145 return (
bool)
$c($block_id, $ref_id);
parseCurrentBlock(string $part=ilGlobalTemplateInterface::DEFAULT_BLOCK)
getItemRenderer()
Render Item Block Sequence.
bool $enable_multi_download
ILIAS Containter Content ObjectiveRenderer $objective_renderer
setBlockPrefixClosure(Closure $f)
Closure $item_hidden_closure
bool $enable_manage_select_all
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...
hasTypeBlock(string $a_type)
renderSingleTypeBlock(string $a_type, bool $exhausted=false)
static getItemsByEvent(int $event_id)
Get session material / event items.
if($clientAssertionType !='urn:ietf:params:oauth:client-assertion-type:jwt-bearer'|| $grantType !='client_credentials') $parts
getDownloadableTypes()
Get downloadable repository object types.
renderSingleCustomBlock($a_id)
Interface Observer Contains several chained tasks and infos about them.
ILIAS Container Content BlockSessionRepository $block_repo
ILIAS Containter Content ItemRenderer $item_renderer
getLinkTarget(object $a_gui_obj, ?string $a_cmd=null, ?string $a_anchor=null, bool $is_async=false, bool $has_xml_style=false)
addSeparatorRow(ilTemplate $a_tpl)
setItemHiddenClosure(Closure $f)
static lookupHideTitle(int $a_id)
renderHelperGeneric(ilTemplate $a_block_tpl, $a_block_id, array $a_block, bool $a_is_single=false, bool $is_exhausted=false)
addDetailsLevel(int $a_level, string $a_url, bool $a_active=false)
renderHelperCustomBlock(ilTemplate $a_block_tpl, $a_block_id, bool $a_is_single=false, bool $is_exhausted=false)
getDetailsLevel(int $a_item_id)
renderItemBlockSequence(\ILIAS\Container\Content\ItemBlock\ItemBlockSequence $sequence)
addTypeBlock(string $a_type, ?string $a_prefix=null, ?string $a_postfix=null)
ILIAS Container Content ItemPresentationManager $item_presentation
static _lookupObjId(int $ref_id)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
hasItem($a_id)
Item with id exists?
Preloader for object list GUIs.
bool $active_block_ordering
touchBlock(string $block)
renderDetails(ilTemplate $a_tpl)
ILIAS Container Content ItemManager $item_manager
setVariable($variable, $value='')
Sets a variable value.
addShowMoreButton($a_block_id)
Add show more button to a block.
isItemHidden(string $block_id, int $ref_id)
static getImagePath(string $image_name, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
getViewModeOfItemGroup(int $ref_id)
setBlockPostfixClosure(Closure $f)
addItemToBlock( $a_block_id, string $a_item_type, $a_item_id, $a_item_html, bool $a_force=false)
Add item to existing block.
isValidBlock($a_id)
Any block with id exists?
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilObjectDefinition $obj_definition
static getPluginObjectByType(string $type)
Return either a repoObject plugin or a orgunit extension plugin or null if the type is not a plugin...
hasCustomBlock($a_id)
Custom block already exists?
Closure $block_prefix_closure
setCurrentBlock(string $part=ilGlobalTemplateInterface::DEFAULT_BLOCK)
getBlockPrefix($block_id)
hideItem($a_id)
Mark item id as used, but do not render.
ilContainerGUI $container_gui
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
__construct(Container $dic, ilPlugin $plugin)
removeItem($a_id)
Remove item (from any block)
addCustomBlock( $a_id, string $a_caption, ?string $a_actions=null, array $a_data=[])
Add custom block.
Class ilContainerGUI This is a base GUI class for all container objects in ILIAS: root folder...
setBlockPosition( $a_block_id, int $a_pos)
static _lookupContainerSetting(int $a_id, string $a_keyword, ?string $a_default_value=null)
addItemGroupBlock(string $block_id, int $block_pos=0)
replaces ilContainerContentGUI::renderItemGroup
setParameter(object $a_gui_obj, string $a_parameter, $a_value)
getListPresentationOfItemGroup(int $ref_id)
addStandardRow(ilTemplate $a_tpl, string $a_html, int $a_ref_id=0)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
const DETAILS_DEACTIVATED
Closure $block_postfix_closure
renderSelectAllBlock(ilTemplate $a_tpl)
Render "select all".
addHeaderRow(ilTemplate $a_tpl, string $a_type="", string $a_text="", ?array $a_types_in_block=null, string $a_commands_html="", string $a_order_id="", array $a_data=[])
Render block header.
getBlockPostfix($block_id)
renderHelperTypeBlock(ilTemplate $a_block_tpl, string $a_type, bool $a_is_single=false, bool $is_exhausted=false)