59 protected \ILIAS\DI\UIServices
$ui;
63 bool $a_enable_manage_select_all =
false,
64 bool $a_enable_multi_download =
false,
65 bool $a_active_block_ordering =
false,
66 array $a_block_custom_positions = [],
69 bool $admin_panel =
false 74 $this->
lng = $DIC->language();
76 $this->
ui = $DIC->ui();
77 $this->obj_definition = $DIC[
"objDefinition"];
78 $this->enable_manage_select_all = $a_enable_manage_select_all;
79 $this->enable_multi_download = $a_enable_multi_download;
80 $this->active_block_ordering = $a_active_block_ordering;
81 $this->block_custom_pos = $a_block_custom_positions;
82 $this->view_mode = $a_view_mode;
84 $obj = $container_gui_obj;
85 $this->container_gui = $obj;
86 $this->
ctrl = $DIC->ctrl();
100 string $a_prefix = null,
101 string $a_postfix = null
103 if ($a_type !==
"itgr" &&
105 $this->type_blocks[$a_type] = [
106 "prefix" => $a_prefix
107 ,
"postfix" => $a_postfix
116 return array_key_exists($a_type, $this->type_blocks);
126 string $a_actions = null,
130 $this->custom_blocks[$a_id] = [
131 "caption" => $a_caption
132 ,
"actions" => $a_actions
146 return array_key_exists($a_id, $this->custom_blocks);
172 $this->hidden_items[$a_id] =
true;
188 unset($this->item_ids[$a_id], $this->hidden_items[$a_id]);
190 foreach (array_keys($this->items) as $item_id) {
191 $parts = explode(self::UNIQUE_SEPARATOR, $item_id);
192 if (array_pop(
$parts) == $a_id) {
193 unset($this->items[$item_id]);
197 foreach ($this->block_items as $block_id => $items) {
198 foreach ($items as $idx => $item_id) {
199 $parts = explode(self::UNIQUE_SEPARATOR, $item_id);
200 if (array_pop(
$parts) == $a_id) {
201 unset($this->block_items[$block_id][$idx]);
202 if (!count($this->block_items[$block_id])) {
203 unset($this->block_items[$block_id]);
218 return (array_key_exists($a_id, $this->item_ids) ||
219 array_key_exists($a_id, $this->hidden_items));
234 bool $a_force =
false 236 if ($a_item_type !==
"itgr" &&
238 (!$this->
hasItem($a_item_id) || $a_force)) {
239 if (is_string($a_item_html) && trim($a_item_html) ===
"") {
248 $uniq_id = $a_block_id . self::UNIQUE_SEPARATOR . $a_item_id;
250 $this->items[$uniq_id] = [
251 "type" => $a_item_type
252 ,
"html" => $a_item_html
258 $this->block_items[$a_block_id][] = $uniq_id;
269 $this->item_ids[$a_item_id] =
true;
278 $this->show_more[] = $a_block_id;
284 bool $a_active =
false 286 $this->details[$a_level] = [
288 ,
"active" => $a_active
310 $this->block_pos[$a_block_id] = $a_pos;
340 return $block_tpl->get();
350 return $block_tpl->get();
363 return $block_tpl->get();
376 if (is_array($this->block_custom_pos) && count($this->block_custom_pos)) {
378 $this->block_pos = [];
379 foreach ($this->block_custom_pos as $idx => $block_id) {
381 $this->block_pos[$block_id] = $idx;
386 if (count($this->block_pos)) {
388 $last = max($this->block_pos);
389 foreach (array_keys($tmp) as $block_id) {
390 if (!array_key_exists($block_id, $this->block_pos)) {
391 $this->block_pos[$block_id] = ++$last;
397 $this->block_pos = $tmp;
402 $last = count($this->block_pos)
403 ? max($this->block_pos)
405 foreach (array_keys($this->custom_blocks) as $block_id) {
406 if (!array_key_exists($block_id, $this->block_pos)) {
407 $this->block_pos[$block_id] = ++$last;
410 foreach (array_keys($this->type_blocks) as $block_id) {
411 if (!array_key_exists($block_id, $this->block_pos)) {
412 $this->block_pos[$block_id] = ++$last;
416 asort($this->block_pos);
417 return array_keys($this->block_pos);
426 bool $a_is_single =
false 429 return $this->
renderHelperGeneric($a_block_tpl, $a_block_id, $this->custom_blocks[$a_block_id], $a_is_single);
437 bool $a_is_single =
false 440 $block = $this->type_blocks[$a_type];
441 $block[
"type"] = $a_type;
454 bool $a_is_single =
false 457 if (!in_array($a_block_id, $this->rendered_blocks)) {
458 $this->rendered_blocks[] = $a_block_id;
461 if (isset($this->block_items[$a_block_id]) && is_array($this->block_items[$a_block_id])) {
462 foreach ($this->block_items[$a_block_id] as $item_id) {
463 if (isset($this->items[$item_id][
"type"])) {
464 $block_types[] = $this->items[$item_id][
"type"];
475 if (is_numeric($a_block_id)) {
477 if ($item_group->getListPresentation() !==
"") {
478 $view_mode = ($item_group->getListPresentation() ===
"tile" && !$this->active_block_ordering && !
$this->admin_panel)
481 $tile_size = $item_group->getTileSize();
487 if ((isset($this->block_items[$a_block_id]) && is_array($this->block_items[$a_block_id])) ||
488 is_numeric($a_block_id)) {
496 $a_block[
"type"] ??
'',
497 $a_block[
"caption"] ??
'',
498 array_unique($block_types),
499 $a_block[
"actions"] ??
'',
501 $a_block[
"data"] ?? []
505 if (isset($a_block[
"prefix"]) && $a_block[
"prefix"]) {
510 if (isset($this->block_items[$a_block_id])) {
511 foreach ($this->block_items[$a_block_id] as $item_id) {
513 $this->
addStandardRow($a_block_tpl, $this->items[$item_id][
"html"], (
int) $item_id);
515 $cards[] = $this->items[$item_id][
"html"];
521 if (isset($a_block[
"postfix"]) && $a_block[
"postfix"]) {
527 $f = $this->
ui->factory();
528 $renderer = $this->
ui->renderer();
531 switch ($tile_size) {
533 $deck =
$f->deck($cards)->withSmallCardsSize();
537 $deck =
$f->deck($cards)->withLargeCardsSize();
541 $deck =
$f->deck($cards)->withExtraLargeCardsSize();
545 $deck =
$f->deck($cards)->withFullSizedCardsSize();
549 $deck =
$f->deck($cards)->withNormalCardsSize();
554 $html = $renderer->render($deck);
561 if (in_array($a_block_id, $this->show_more)) {
564 $ctrl->
setParameter($this->container_gui,
"type", $a_block_id);
565 $url = $ctrl->
getLinkTarget($this->container_gui,
"renderBlockAsynch",
"",
true);
568 $f = $this->
ui->factory();
569 $renderer = $this->
ui->renderer();
570 $button =
$f->button()->standard($this->
lng->txt(
"cont_show_more"),
"")
572 ->withOnLoadCode(
function (
$id) use ($a_block_id,
$url) {
573 return "il.Container.initShowMore('$id', '$a_block_id', '" .
$url .
"');";
576 $a_block_tpl->
setVariable(
"SHOW_MORE_BUTTON", $renderer->renderAsync($button));
578 $a_block_tpl->
setVariable(
"SHOW_MORE_BUTTON", $renderer->render($button));
594 return new ilTemplate(
"tpl.container_list_block.html",
true,
true,
"Services/Container");
606 array $a_types_in_block = null,
607 string $a_commands_html =
"",
608 string $a_order_id =
"",
615 $a_tpl->
setVariable(
"CB_ID",
' id="bl_cntr_' . (++$this->bl_cnt) .
'"');
617 if ($this->enable_manage_select_all) {
619 } elseif ($this->enable_multi_download) {
621 $a_types_in_block = [$a_type];
623 foreach ($a_types_in_block as
$type) {
631 if ($a_text ===
"" && $a_type !==
"") {
632 if (!$objDefinition->isPlugin($a_type)) {
633 $title = $lng->
txt(
"objs_" . $a_type);
636 $title = $pl->txt(
"objs_" . $a_type);
642 if (is_array($a_data)) {
643 foreach ($a_data as $k => $v) {
655 if ($a_type !==
"" &&
$ilSetting->get(
"icon_position_in_lists") !==
"item_rows") {
665 if ($a_order_id !==
"") {
666 $a_tpl->
setVariable(
"BLOCK_HEADER_ORDER_NAME",
"position[blocks][" . $a_order_id .
"]");
667 $a_tpl->
setVariable(
"BLOCK_HEADER_ORDER_NUM", (++$this->order_cnt) * 10);
670 $presentation_title = $title;
672 if (trim($title) ===
"") {
673 $presentation_title = $this->
lng->txt(
"cont_no_title");
674 $sr_only =
"sr-only";
676 $a_tpl->
setVariable(
"BLOCK_HEADER_CONTENT", $presentation_title);
678 $a_tpl->
setVariable(
"CHR_COMMANDS", $a_commands_html);
689 $a_tpl->
setVariable(
"ROW_ID",
'id="item_row_' . $a_ref_id .
'"');
710 $a_tpl->
setVariable(
"CHECKBOXNAME",
"bl_cb_" . $this->bl_cnt);
711 $a_tpl->
setVariable(
"SEL_ALL_PARENT",
"bl_cntr_" . $this->bl_cnt);
712 $a_tpl->
setVariable(
"SEL_ALL_PARENT",
"bl_cntr_" . $this->bl_cnt);
728 return [
"fold",
"file"];
735 if (count($this->details)) {
parseCurrentBlock(string $part=ilGlobalTemplateInterface::DEFAULT_BLOCK)
renderHelperCustomBlock(ilTemplate $a_block_tpl, $a_block_id, bool $a_is_single=false)
bool $enable_multi_download
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)
if($clientAssertionType !='urn:ietf:params:oauth:client-assertion-type:jwt-bearer'|| $grantType !='client_credentials') $parts
getDownloadableTypes()
Get downloadable repository object types.
renderSingleCustomBlock($a_id)
static getImagePath(string $img, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
addCustomBlock( $a_id, string $a_caption, string $a_actions=null, array $a_data=[])
Add custom block.
addSeparatorRow(ilTemplate $a_tpl)
addDetailsLevel(int $a_level, string $a_url, bool $a_active=false)
static _lookupContainerSetting(int $a_id, string $a_keyword, string $a_default_value=null)
hasItem($a_id)
Item with id exists?
bool $active_block_ordering
touchBlock(string $block)
parses the objects.xml it handles the xml-description of all ilias objects
renderDetails(ilTemplate $a_tpl)
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.
setVariable($variable, $value='')
Sets a variable value.
addShowMoreButton($a_block_id)
Add show more button to a block.
addItemToBlock( $a_block_id, string $a_item_type, $a_item_id, $a_item_html, bool $a_force=false)
Add item to existing block.
renderHelperGeneric(ilTemplate $a_block_tpl, $a_block_id, array $a_block, bool $a_is_single=false)
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?
setCurrentBlock(string $part=ilGlobalTemplateInterface::DEFAULT_BLOCK)
hideItem($a_id)
Mark item id as used, but do not render.
getLinkTarget(object $a_gui_obj, string $a_cmd=null, string $a_anchor=null, bool $is_async=false, bool $has_xml_style=false)
ilContainerGUI $container_gui
__construct(Container $dic, ilPlugin $plugin)
renderSingleTypeBlock(string $a_type)
removeItem($a_id)
Remove item (from any block)
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Class ilContainerGUI This is a base GUI class for all container objects in ILIAS: root folder...
renderHelperTypeBlock(ilTemplate $a_block_tpl, string $a_type, bool $a_is_single=false)
setBlockPosition( $a_block_id, int $a_pos)
setParameter(object $a_gui_obj, string $a_parameter, $a_value)
addStandardRow(ilTemplate $a_tpl, string $a_html, int $a_ref_id=0)
addTypeBlock(string $a_type, string $a_prefix=null, string $a_postfix=null)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
renderSelectAllBlock(ilTemplate $a_tpl)
Render "select all".