ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilContainerRenderer.php
Go to the documentation of this file.
1 <?php
2 
25 {
26  protected const UNIQUE_SEPARATOR = "-";
27  protected \ILIAS\Container\Content\ItemManager $item_manager;
29  protected ilObjUser $user;
30  protected \ILIAS\Containter\Content\ObjectiveRenderer $objective_renderer;
31  protected \ILIAS\Containter\Content\ItemRenderer $item_renderer;
32  protected \ILIAS\Container\Content\ItemPresentationManager $item_presentation;
33  protected bool $admin_panel;
34 
35  protected ilLanguage $lng;
36  protected ilSetting $settings;
39 
40  // switches
41  protected bool $enable_manage_select_all;
42  protected bool $enable_multi_download;
43  protected bool $active_block_ordering;
44 
45  // properties
46  protected array $type_blocks = [];
47  protected array $custom_blocks = [];
48  protected array $items = [];
49  protected array $hidden_items = [];
50  protected array $block_items = [];
51  protected array $details = [];
52  protected array $item_ids = [];
53 
54  // block (unique) ids
55  protected array $rendered_blocks = [];
56  protected int $bl_cnt = 0;
57 
58  // ordering
59  protected array $block_pos = [];
60  protected array $block_custom_pos = [];
61  protected int $order_cnt = 0;
62 
63  protected array $show_more = [];
64  protected int $view_mode;
65  protected \ILIAS\DI\UIServices $ui;
66  protected ilCtrl $ctrl;
70  protected \ILIAS\Container\Content\BlockSessionRepository $block_repo;
71 
72  public function __construct(
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 = [],
78  ?ilContainerGUI $container_gui_obj = null,
79  int $a_view_mode = ilContainerContentGUI::VIEW_MODE_LIST,
80  bool $admin_panel = false
81  ) {
82  global $DIC;
83 
84  $this->item_presentation = $item_presentation;
85  $this->admin_panel = $admin_panel;
86  $this->lng = $DIC->language();
87  $this->settings = $DIC->settings();
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();
101 
102  $this->item_renderer = $DIC->container()
103  ->internal()
104  ->gui()
105  ->content()
106  ->itemRenderer(
107  $this->container_gui,
108  $a_view_mode
109  );
110  $this->objective_renderer = $DIC->container()
111  ->internal()
112  ->gui()
113  ->content()
114  ->objectiveRenderer(
115  $this->container_gui,
116  $a_view_mode,
117  clone $this
118  );
119  $this->block_repo = $DIC
120  ->container()
121  ->internal()
122  ->repo()
123  ->content()
124  ->block();
125  $this->item_manager = $DIC
126  ->container()
127  ->internal()
128  ->domain()
129  ->content()
130  ->items($this->container_gui->getObject());
131  }
132 
133  public function setBlockPrefixClosure(Closure $f): void
134  {
135  $this->block_prefix_closure = $f;
136  }
137 
138  public function setBlockPostfixClosure(Closure $f): void
139  {
140  $this->block_postfix_closure = $f;
141  }
142 
143  public function setItemHiddenClosure(Closure $f): void
144  {
145  $this->item_hidden_closure = $f;
146  }
147 
148  protected function getViewMode(): int
149  {
150  return $this->view_mode;
151  }
152 
153  //
154  // blocks
155  //
156 
157  public function addTypeBlock(
158  string $a_type,
159  ?string $a_prefix = null,
160  ?string $a_postfix = null
161  ): bool {
162  if ($a_type !== "itgr" &&
163  !$this->hasTypeBlock($a_type)) {
164  $this->type_blocks[$a_type] = [
165  "prefix" => $a_prefix
166  ,"postfix" => $a_postfix
167  ];
168  return true;
169  }
170  return false;
171  }
172 
173  public function hasTypeBlock(string $a_type): bool
174  {
175  return array_key_exists($a_type, $this->type_blocks);
176  }
177 
182  public function addCustomBlock(
183  $a_id,
184  string $a_caption,
185  ?string $a_actions = null,
186  array $a_data = []
187  ): bool {
188  if (!$this->hasCustomBlock($a_id)) {
189  $this->custom_blocks[$a_id] = [
190  "caption" => $a_caption
191  ,"actions" => $a_actions
192  ,"data" => $a_data
193  ];
194  return true;
195  }
196  return false;
197  }
198 
203  public function hasCustomBlock($a_id): bool
204  {
205  return array_key_exists($a_id, $this->custom_blocks);
206  }
207 
212  public function isValidBlock($a_id): bool
213  {
214  return ($this->hasTypeBlock($a_id) ||
215  $this->hasCustomBlock($a_id));
216  }
217 
218 
219  //
220  // items
221  //
222 
228  public function hideItem($a_id): void
229  {
230  // see hasItem();
231  $this->hidden_items[$a_id] = true;
232 
233  // #16629 - do not remove hidden items from other blocks
234  // $this->removeItem($a_id);
235  }
236 
241  public function removeItem($a_id): void
242  {
243  if (!$this->hasItem($a_id)) {
244  return;
245  }
246 
247  unset($this->item_ids[$a_id], $this->hidden_items[$a_id]);
248 
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]);
253  }
254  }
255 
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]);
263  }
264  break;
265  }
266  }
267  }
268  }
269 
275  public function hasItem($a_id): bool
276  {
277  return (array_key_exists($a_id, $this->item_ids) ||
278  array_key_exists($a_id, $this->hidden_items));
279  }
280 
288  public function addItemToBlock(
289  $a_block_id,
290  string $a_item_type,
291  $a_item_id,
292  $a_item_html,
293  bool $a_force = false
294  ): bool {
295  if ($a_item_type !== "itgr" &&
296  $this->isValidBlock($a_block_id) &&
297  (!$this->hasItem($a_item_id) || $a_force)) {
298  if (is_string($a_item_html) && trim($a_item_html) === "") {
299  return false;
300  }
301  if (!$a_item_html) {
302  return false;
303  }
304 
305 
306  // #16563 - item_id (== ref_id) is NOT unique, adding parent block id
307  $uniq_id = $a_block_id . self::UNIQUE_SEPARATOR . $a_item_id;
308 
309  $this->items[$uniq_id] = [
310  "type" => $a_item_type
311  ,"html" => $a_item_html
312  ];
313 
314  // #18326
315  $this->addItemId($a_item_id);
316  $this->block_items[$a_block_id][] = $uniq_id;
317  return true;
318  }
319  return false;
320  }
321 
325  public function addItemId($a_item_id): void
326  {
327  $this->item_ids[$a_item_id] = true;
328  }
329 
334  public function addShowMoreButton($a_block_id): void
335  {
336  $this->show_more[] = $a_block_id;
337  }
338 
339  public function addDetailsLevel(
340  int $a_level,
341  string $a_url,
342  bool $a_active = false
343  ): void {
344  $this->details[$a_level] = [
345  "url" => $a_url
346  ,"active" => $a_active
347  ];
348  }
349 
350  public function resetDetails(): void
351  {
352  $this->details = [];
353  }
354 
355 
356  //
357  // render
358  //
359 
363  public function setBlockPosition(
364  $a_block_id,
365  int $a_pos
366  ): void {
367  if ($this->isValidBlock($a_block_id)) {
368  $this->block_pos[$a_block_id] = $a_pos;
369  }
370  }
371 
372  public function getHTML(): string
373  {
374  $valid = false;
375 
376  $block_tpl = $this->initBlockTemplate();
377 
378  foreach ($this->processBlockPositions() as $block_id) {
379  if (array_key_exists($block_id, $this->custom_blocks) && $this->renderHelperCustomBlock(
380  $block_tpl,
381  $block_id
382  )) {
383  $this->addSeparatorRow($block_tpl);
384  $valid = true;
385  }
386  if (array_key_exists($block_id, $this->type_blocks) && $this->renderHelperTypeBlock(
387  $block_tpl,
388  $block_id
389  )) {
390  $this->addSeparatorRow($block_tpl);
391  $valid = true;
392  }
393  }
394 
395  if ($valid) {
396  $this->renderDetails($block_tpl);
397 
398  return $block_tpl->get();
399  }
400  return "";
401  }
402 
403  public function renderSingleTypeBlock(string $a_type, bool $exhausted = false): string
404  {
405  $block_tpl = $this->initBlockTemplate();
406  if ($this->renderHelperTypeBlock($block_tpl, $a_type, true, $exhausted)) {
407  return $block_tpl->get();
408  }
409  return "";
410  }
411 
415  public function renderSingleCustomBlock($a_id): string
416  {
417  $block_tpl = $this->initBlockTemplate();
418 
419  if ($this->renderHelperCustomBlock($block_tpl, $a_id, true)) {
420  return $block_tpl->get();
421  }
422  return "";
423  }
424 
425 
426  //
427  // render (helper)
428  //
429 
430  protected function processBlockPositions(): array
431  {
432  // manual order
433  if (is_array($this->block_custom_pos) && count($this->block_custom_pos)) {
434  $tmp = $this->block_pos;
435  $this->block_pos = [];
436  foreach ($this->block_custom_pos as $idx => $block_id) {
437  if ($this->isValidBlock($block_id)) {
438  $this->block_pos[$block_id] = $idx;
439  }
440  }
441 
442  // at least some manual are valid
443  if (count($this->block_pos)) {
444  // append missing blocks from default order
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;
449  }
450  }
451  }
452  // all manual invalid, use default
453  else {
454  $this->block_pos = $tmp;
455  }
456  }
457 
458  // add missing blocks to order
459  $last = count($this->block_pos)
460  ? max($this->block_pos)
461  : 0;
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;
465  }
466  }
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;
470  }
471  }
472 
473  asort($this->block_pos);
474  return array_keys($this->block_pos);
475  }
476 
480  protected function renderHelperCustomBlock(
481  ilTemplate $a_block_tpl,
482  $a_block_id,
483  bool $a_is_single = false,
484  bool $is_exhausted = false
485  ): bool {
486  if ($this->hasCustomBlock($a_block_id)) {
487  return $this->renderHelperGeneric($a_block_tpl, $a_block_id, $this->custom_blocks[$a_block_id], $a_is_single, $is_exhausted);
488  }
489  return false;
490  }
491 
492  protected function renderHelperTypeBlock(
493  ilTemplate $a_block_tpl,
494  string $a_type,
495  bool $a_is_single = false,
496  bool $is_exhausted = false
497  ): bool {
498  if ($this->hasTypeBlock($a_type)) {
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);
502  }
503  return false;
504  }
505 
506  protected function getViewModeOfItemGroup(int $ref_id): int
507  {
508  $item_group = new ilObjItemGroup($ref_id);
510  if ($item_group->getListPresentation() !== "") {
511  $view_mode = ($item_group->getListPresentation() === "tile")
514  }
515  return $view_mode;
516  }
517 
518  protected function getListPresentationOfItemGroup(int $ref_id): string
519  {
520  $item_group = new ilObjItemGroup($ref_id);
521  return $item_group->getListPresentation();
522  }
523 
527  protected function renderHelperGeneric(
528  ilTemplate $a_block_tpl,
529  $a_block_id,
530  array $a_block,
531  bool $a_is_single = false,
532  bool $is_exhausted = false
533  ): bool {
534  $ctrl = $this->ctrl;
535  if (!in_array($a_block_id, $this->rendered_blocks)) {
536  $this->rendered_blocks[] = $a_block_id;
537  $block_types = [];
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"];
542  }
543  }
544  }
545 
546  // determine view mode and tile size
547  $tile_size = ilContainer::TILE_SMALL;
548  $view_mode = $this->getViewMode();
549  if ($view_mode === ilContainerContentGUI::VIEW_MODE_TILE) {
550  $tile_size = ilContainer::_lookupContainerSetting($this->container_gui->getObject()->getId(), "tile_size");
551  }
552  if (is_numeric($a_block_id)) {
553  $item_group = new ilObjItemGroup($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();
559  }
560  }
561 
562 
563  // #14610 - manage empty item groups
564  if ((isset($this->block_items[$a_block_id]) && is_array($this->block_items[$a_block_id])) ||
565  is_numeric($a_block_id)) {
566  $cards = [];
567 
568  $order_id = (!$a_is_single && $this->active_block_ordering)
569  ? $a_block_id
570  : "";
571  $this->addHeaderRow(
572  $a_block_tpl,
573  $a_block["type"] ?? '',
574  $a_block["caption"] ?? '',
575  array_unique($block_types),
576  $a_block["actions"] ?? '',
577  $order_id,
578  $a_block["data"] ?? []
579  );
580 
581  if ($view_mode === ilContainerContentGUI::VIEW_MODE_LIST) {
582  if (isset($a_block["prefix"]) && $a_block["prefix"]) {
583  $this->addStandardRow($a_block_tpl, $a_block["prefix"]);
584  }
585  }
586 
587  if (isset($this->block_items[$a_block_id])) {
588  foreach ($this->block_items[$a_block_id] as $item_id) {
589  if ($view_mode === ilContainerContentGUI::VIEW_MODE_LIST) {
590  $this->addStandardRow($a_block_tpl, $this->items[$item_id]["html"], (int) $item_id);
591  } else {
592  $cards[] = $this->items[$item_id]["html"];
593  }
594  }
595  }
596 
597  if ($view_mode === ilContainerContentGUI::VIEW_MODE_LIST) {
598  if (isset($a_block["postfix"]) && $a_block["postfix"]) {
599  $this->addStandardRow($a_block_tpl, $a_block["postfix"]);
600  }
601  }
602 
603  if ($view_mode === ilContainerContentGUI::VIEW_MODE_TILE) {
604  $f = $this->ui->factory();
605  $renderer = $this->ui->renderer();
606 
607  //Create a deck with large cards
608  switch ($tile_size) {
610  $deck = $f->deck($cards)->withSmallCardsSize();
611  break;
612 
614  $deck = $f->deck($cards)->withLargeCardsSize();
615  break;
616 
618  $deck = $f->deck($cards)->withExtraLargeCardsSize();
619  break;
620 
622  $deck = $f->deck($cards)->withFullSizedCardsSize();
623  break;
624 
625  default:
626  $deck = $f->deck($cards)->withNormalCardsSize();
627  break;
628  }
629 
630  $html = $renderer->render($deck);
631  $a_block_tpl->setCurrentBlock("tile_rows");
632  $a_block_tpl->setVariable("TILE_ROWS", $html);
633  $a_block_tpl->parseCurrentBlock();
634  }
635  // show more
636  if ($is_exhausted) {
637  $a_block_tpl->setCurrentBlock("show_more");
638 
639  $ctrl->setParameter($this->container_gui, "type", $a_block_id);
640  $url = $ctrl->getLinkTarget($this->container_gui, "renderBlockAsynch", "", true);
641  $ctrl->setParameter($this->container_gui, "type", "");
642 
643  $f = $this->ui->factory();
644  $renderer = $this->ui->renderer();
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 . "');";
649  });
650  if ($ctrl->isAsynch()) {
651  $a_block_tpl->setVariable("SHOW_MORE_BUTTON", $renderer->renderAsync($button));
652  } else {
653  $a_block_tpl->setVariable("SHOW_MORE_BUTTON", $renderer->render($button));
654  }
655  $a_block_tpl->parseCurrentBlock();
656  $a_block_tpl->setCurrentBlock("show_more");
657  $a_block_tpl->parseCurrentBlock();
658  }
659 
660  return true;
661  }
662  }
663 
664  return false;
665  }
666 
667  protected function initBlockTemplate(): ilTemplate
668  {
669  return new ilTemplate("tpl.container_list_block.html", true, true, "components/ILIAS/Container");
670  }
671 
677  protected function addHeaderRow(
678  ilTemplate $a_tpl,
679  string $a_type = "",
680  string $a_text = "",
681  ?array $a_types_in_block = null,
682  string $a_commands_html = "",
683  string $a_order_id = "",
684  array $a_data = []
685  ): void {
686  $lng = $this->lng;
688  $objDefinition = $this->obj_definition;
689 
690  $a_tpl->setVariable("CB_ID", ' id="bl_cntr_' . (++$this->bl_cnt) . '"');
691 
692  if ($this->enable_manage_select_all) {
693  $this->renderSelectAllBlock($a_tpl);
694  } elseif ($this->enable_multi_download) {
695  if ($a_type) {
696  $a_types_in_block = [$a_type];
697  }
698  foreach ($a_types_in_block as $type) {
699  if (in_array($type, $this->getDownloadableTypes(), true)) {
700  $this->renderSelectAllBlock($a_tpl);
701  break;
702  }
703  }
704  }
705 
706  if ($a_text === "" && $a_type !== "") {
707  if (!$objDefinition->isPlugin($a_type)) {
708  $title = $lng->txt("objs_" . $a_type);
709  } else {
711  $title = $pl->txt("objs_" . $a_type);
712  }
713  } else {
714  $title = $a_text;
715  }
716 
717  if (is_array($a_data)) {
718  foreach ($a_data as $k => $v) {
719  $a_tpl->setCurrentBlock("cb_data");
720  $a_tpl->setVariable("DATA_KEY", $k);
721  $a_tpl->setVariable("DATA_VALUE", $v);
722  $a_tpl->parseCurrentBlock();
723 
724  if ($k === "behaviour" && $v == ilItemGroupBehaviour::EXPANDABLE_CLOSED) {
725  $a_tpl->touchBlock("container_items_hide");
726  }
727  }
728  }
729 
730  if ($a_type !== "" && $ilSetting->get("icon_position_in_lists") !== "item_rows") {
731  $icon = ilUtil::getImagePath("standard/icon_" . $a_type . ".svg");
732 
733  $a_tpl->setCurrentBlock("container_header_row_image");
734  $a_tpl->setVariable("HEADER_IMG", $icon);
735  $a_tpl->setVariable("HEADER_ALT", $title);
736  } else {
737  $a_tpl->setCurrentBlock("container_header_row");
738  }
739 
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);
743  }
744 
745  $presentation_title = $title;
746  $sr_only = "";
747  if (trim($title) === "") {
748  $presentation_title = $this->lng->txt("cont_no_title");
749  $sr_only = "sr-only";
750  }
751  $a_tpl->setVariable("BLOCK_HEADER_CONTENT", $presentation_title);
752  $a_tpl->setVariable("SR_ONLY", $sr_only);
753  $a_tpl->setVariable("CHR_COMMANDS", $a_commands_html);
754  $a_tpl->parseCurrentBlock();
755  }
756 
757  protected function addStandardRow(
758  ilTemplate $a_tpl,
759  string $a_html,
760  int $a_ref_id = 0
761  ): void {
762  if ($a_ref_id > 0) {
763  $a_tpl->setCurrentBlock("row");
764  $a_tpl->setVariable("ROW_ID", 'id="item_row_' . $a_ref_id . '"');
765  $a_tpl->parseCurrentBlock();
766  } else {
767  $a_tpl->touchBlock("row");
768  }
769 
770  $a_tpl->setCurrentBlock("container_standard_row");
771  $a_tpl->setVariable("BLOCK_ROW_CONTENT", $a_html);
772  $a_tpl->parseCurrentBlock();
773 
774  $a_tpl->touchBlock("container_row");
775  }
776 
780  protected function renderSelectAllBlock(ilTemplate $a_tpl): void
781  {
782  $lng = $this->lng;
783 
784  $a_tpl->setCurrentBlock("select_all_row");
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);
788  $a_tpl->setVariable("TXT_SELECT_ALL", $lng->txt("select_all"));
789  $a_tpl->parseCurrentBlock();
790  }
791 
792  protected function addSeparatorRow(ilTemplate $a_tpl): void
793  {
794  $a_tpl->setCurrentBlock("container_block");
795  $a_tpl->parseCurrentBlock();
796  }
797 
801  protected function getDownloadableTypes(): array
802  {
803  return ["fold", "file"];
804  }
805 
806  public function renderDetails(ilTemplate $a_tpl): void
807  {
808  $lng = $this->lng;
809 
810  if (count($this->details)) {
811  $a_tpl->setCurrentBlock('container_details_row');
812  $a_tpl->setVariable('TXT_DETAILS', $lng->txt('details'));
813  $a_tpl->parseCurrentBlock();
814  }
815  }
816 
820 
821  public function getItemRenderer(): \ILIAS\Containter\Content\ItemRenderer
822  {
823  return $this->item_renderer;
824  }
825 
826  protected function renderContainerPage(): string
827  {
828  return $this->container_gui->getContainerPageHTML();
829  }
830 
831  protected function getDetailsLevel(int $a_item_id): int
832  {
833  if ($this->container_gui->isActiveAdministrationPanel()) {
835  }
836  if ($this->item_manager->getExpanded($a_item_id) !== null) {
837  return $this->item_manager->getExpanded($a_item_id);
838  }
839  /*if ($a_item_id === $this->force_details) {
840  return ilContainerContentGUI::DETAILS_ALL;
841  }*/
843  }
844 
845  public function renderItemBlockSequence(
846  \ILIAS\Container\Content\ItemBlock\ItemBlockSequence $sequence
847  ): string {
848  $valid = false;
849 
850  $page_html = $this->renderContainerPage();
851  $block_tpl = $this->initBlockTemplate();
852 
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") {
858  $ev_items = ilObjectActivation::getItemsByEvent((int) $rd["obj_id"]);
859  foreach ($ev_items as $ev_item) {
860  $preloader->addItem((int) $ev_item["obj_id"], $ev_item["type"], $ev_item["ref_id"]);
861  }
862  }
863  }
864  $preloader->preload();
865 
866  $embedded_block_ids = $this->item_presentation->getPageEmbeddedBlockIds();
867  foreach ($sequence->getBlocks() as $block) {
868  $block_id = "";
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;
873  }
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;
878  }
879  }
880  if ($block->getBlock() instanceof \ILIAS\Container\Content\SessionBlock) {
881  $block_id = "sess";
882  }
883  if ($block->getBlock() instanceof \ILIAS\Container\Content\OtherBlock) {
884  $block_id = "_other";
885  }
886  if ($block->getBlock() instanceof \ILIAS\Container\Content\ObjectivesBlock) {
887  $block_id = "_lobj";
888  }
889 
890  $position = 1;
891  $pos_prefix = "";
892 
893  // (1) add block
894  if ($block->getBlock() instanceof \ILIAS\Container\Content\ItemGroupBlock) {
895  $this->addItemGroupBlock($block_id);
896  $pos_prefix = "[itgr][" . \ilObject::_lookupObjId($block->getBlock()->getRefId()) . "]";
897  }
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");
902  $this->addCustomBlock($block_id, $title);
903  }
904  if ($block->getBlock() instanceof \ILIAS\Container\Content\TypeBlock ||
905  $block->getBlock() instanceof \ILIAS\Container\Content\SessionBlock) {
906  $this->addTypeBlock(
907  $block_id,
908  $this->getBlockPrefix($block_id),
909  $this->getBlockPostfix($block_id)
910  );
911  }
912 
913  // (2) render and add items
914  foreach ($block->getItemRefIds() as $ref_id) {
915  if ($this->isItemHidden($block_id, $ref_id)) {
916  continue;
917  }
918  if (!$this->access->checkAccess('visible', '', $ref_id)) {
919  continue;
920  }
921 
922  $item_data = $this->item_presentation->getRawDataByRefId($ref_id);
924  if ($this->container_gui->isActiveAdministrationPanel()) {
926  }
927  $item_group_list_presentation = "";
928  if ($block->getBlock() instanceof \ILIAS\Container\Content\ItemGroupBlock) {
929  if ($this->getListPresentationOfItemGroup((int) $block_id) === "tile") {
930  if (!$this->admin_panel && !$this->active_block_ordering) {
931  $item_group_list_presentation = "tile";
932  }
933  }
934  if ($this->getListPresentationOfItemGroup((int) $block_id) === "list") {
935  if (!$this->admin_panel && !$this->active_block_ordering) {
936  $item_group_list_presentation = "list";
937  }
938  }
939  }
940  $html = $this->item_renderer->renderItem(
941  $item_data,
942  $position++,
943  false,
944  $pos_prefix,
945  $item_group_list_presentation,
946  $checkbox,
947  $this->item_presentation->isActiveItemOrdering(),
948  $this->getDetailsLevel($item_data["obj_id"])
949  );
950  if ($html != "") {
951  $this->addItemToBlock(
952  $block_id,
953  $item_data["type"],
954  $item_data["child"],
955  $html,
956  $force_item_even_if_already_rendered
957  );
958  }
959  }
960 
961  // (3) render blocks
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',
967  $this->renderSingleTypeBlock($block->getId(), $block->getLimitExhausted()),
968  $page_html
969  );
970  $valid = true;
971  } elseif ($block->getBlock() instanceof \ILIAS\Container\Content\ItemGroupBlock) {
972  $page_html = preg_replace(
973  '~\[item-group-' . $block->getId() . '\]~i',
974  $this->renderSingleCustomBlock((int) $block->getId()),
975  $page_html
976  );
977  $valid = true;
978  } elseif ($block->getBlock() instanceof \ILIAS\Container\Content\OtherBlock) {
979  $page_html = preg_replace(
980  '~\[list-_other\]~i',
981  $this->renderSingleCustomBlock($block->getId()),
982  $page_html
983  );
984  $valid = true;
985  } elseif ($block->getBlock() instanceof \ILIAS\Container\Content\ObjectivesBlock) {
986  $page_html = preg_replace(
987  '~\[list-_lobj\]~i',
988  $this->objective_renderer->renderObjectives(),
989  $page_html
990  );
991  $valid = true;
992  }
993  } else {
994  if ($block->getBlock() instanceof \ILIAS\Container\Content\ItemGroupBlock ||
995  $block->getBlock() instanceof \ILIAS\Container\Content\OtherBlock) {
996  if ($this->renderHelperCustomBlock($block_tpl, $block_id, false, $block->getLimitExhausted())) {
997  $this->addSeparatorRow($block_tpl);
998  $valid = true;
999  }
1000  }
1001  if ($block->getBlock() instanceof \ILIAS\Container\Content\TypeBlock ||
1002  $block->getBlock() instanceof \ILIAS\Container\Content\SessionBlock) {
1003  if ($this->renderHelperTypeBlock($block_tpl, $block_id, false, $block->getLimitExhausted())) {
1004  $this->addSeparatorRow($block_tpl);
1005  $valid = true;
1006  }
1007  }
1008  if ($block->getBlock() instanceof \ILIAS\Container\Content\ObjectivesBlock) {
1009  $this->objective_renderer->renderObjectives();
1010  $block_tpl->setVariable(
1011  "CONTENT",
1012  $this->objective_renderer->getContent()
1013  );
1014  $this->addSeparatorRow($block_tpl);
1015  $valid = true;
1016  }
1017  }
1018  }
1019 
1020  // remove embedded, but unrendered blocks
1021  foreach ($this->item_presentation->getPageEmbeddedBlockIds() as $id) {
1022  if (is_numeric($id)) {
1023  $page_html = preg_replace(
1024  '~\[item-group-' . $id . '\]~i',
1025  "",
1026  $page_html
1027  );
1028  } else {
1029  $page_html = preg_replace(
1030  '~\[list-' . $id . '\]~i',
1031  "",
1032  $page_html
1033  );
1034  }
1035  }
1036 
1037  if ($valid) {
1038  $this->renderDetails($block_tpl);
1039  return $page_html . $block_tpl->get();
1040  }
1041  return $page_html;
1042  }
1043 
1047  protected function addItemGroupBlock(string $block_id, int $block_pos = 0): void
1048  {
1049  $item_data = $this->item_presentation->getRawDataByRefId((int) $block_id);
1050  $item_list_gui = $this->item_renderer->getItemGUI($item_data);
1051 
1052  $perm_ok = true;
1053  /*
1054  $ilAccess = $this->access;
1055  $ilUser = $this->user;
1056 
1057  // #16493
1058  $perm_ok = ($ilAccess->checkAccess("visible", "", $item_data['ref_id']) &&
1059  $ilAccess->checkAccess("read", "", $item_data['ref_id']));
1060 
1061  $items = ilObjectActivation::getItemsByItemGroup($item_data['ref_id']);
1062 
1063  // get all valid ids (this is filtered)
1064  $all_ids = array_map(static function (array $i) : int {
1065  return (int) $i["child"];
1066  }, $this->items["_all"]);
1067 
1068  // remove filtered items
1069  $items = array_filter($items, static function (array $i) use ($all_ids) : bool {
1070  return in_array($i["ref_id"], $all_ids);
1071  });
1072 
1073  // if no permission is given, set the items to "rendered" but
1074  // do not display the whole block
1075  if (!$perm_ok) {
1076  foreach ($items as $item) {
1077  $this->renderer->hideItem($item["child"]);
1078  }
1079  return;
1080  }
1081  */
1082 
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"],
1090  "itgr",
1091  $item_data["title"],
1092  $item_data["description"]
1093  );
1094  $commands_html = $item_list_gui->getCommandsHTML();
1095 
1096  // determine behaviour
1097  $item_group = new ilObjItemGroup($item_data["ref_id"]);
1098  $beh = $item_group->getBehaviour();
1099  $stored_val = $this->block_repo->getProperty(
1100  "itgr_" . $item_data["ref_id"],
1101  $this->user->getId(),
1102  "opened"
1103  );
1104  if ($stored_val !== "" && $beh !== ilItemGroupBehaviour::ALWAYS_OPEN) {
1105  $beh = ($stored_val === "1")
1108  }
1109 
1110  $data = [
1111  "behaviour" => $beh,
1112  "store-url" => "./ilias.php?baseClass=ilcontainerblockpropertiesstoragegui&cmd=store" .
1113  "&cont_block_id=itgr_" . $item_data['ref_id']
1114  ];
1115  if (ilObjItemGroup::lookupHideTitle($item_data["obj_id"]) &&
1116  !$this->container_gui->isActiveAdministrationPanel()) {
1117  $this->addCustomBlock($block_id, "", $commands_html, $data);
1118  } else {
1119  $this->addCustomBlock($block_id, $item_data["title"], $commands_html, $data);
1120  }
1121  }
1122 
1123  protected function getBlockPrefix($block_id): string
1124  {
1125  if ($this->block_prefix_closure instanceof Closure) {
1127  return (string) $c($block_id);
1128  }
1129  return "";
1130  }
1131 
1132  protected function getBlockPostfix($block_id): string
1133  {
1134  if ($this->block_postfix_closure instanceof Closure) {
1136  return (string) $c($block_id);
1137  }
1138  return "";
1139  }
1140 
1141  protected function isItemHidden(string $block_id, int $ref_id): bool
1142  {
1143  if ($this->item_hidden_closure instanceof Closure) {
1145  return (bool) $c($block_id, $ref_id);
1146  }
1147  return false;
1148  }
1149 
1150 }
parseCurrentBlock(string $part=ilGlobalTemplateInterface::DEFAULT_BLOCK)
getItemRenderer()
Render Item Block Sequence.
ILIAS Containter Content ObjectiveRenderer $objective_renderer
$renderer
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...
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
Definition: ltitoken.php:61
getDownloadableTypes()
Get downloadable repository object types.
Interface Observer Contains several chained tasks and infos about them.
ILIAS Container Content BlockSessionRepository $block_repo
$valid
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)
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)
$url
Definition: shib_logout.php:66
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)
renderItemBlockSequence(\ILIAS\Container\Content\ItemBlock\ItemBlockSequence $sequence)
$c
Definition: deliver.php:25
withLoadingAnimationOnClick(bool $loading_animation_on_click=true)
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.
touchBlock(string $block)
renderDetails(ilTemplate $a_tpl)
ILIAS Container Content ItemManager $item_manager
$ref_id
Definition: ltiauth.php:65
setVariable($variable, $value='')
Sets a variable value.
Definition: IT.php:544
addShowMoreButton($a_block_id)
Add show more button to a block.
isItemHidden(string $block_id, int $ref_id)
global $DIC
Definition: shib_login.php:22
static getImagePath(string $image_name, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
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?
setCurrentBlock(string $part=ilGlobalTemplateInterface::DEFAULT_BLOCK)
hideItem($a_id)
Mark item id as used, but do not render.
global $ilSetting
Definition: privfeed.php:31
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23
__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)
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...
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.
renderHelperTypeBlock(ilTemplate $a_block_tpl, string $a_type, bool $a_is_single=false, bool $is_exhausted=false)