1 <?php declare(strict_types=1);
14 public function render(array $groupedItems,
bool $showHeader) : string
16 $tpl =
new ilTemplate(
'tpl.block_tiles.html',
true,
true,
'Services/Dashboard');
18 $itemRendered =
false;
20 foreach ($groupedItems as $group) {
21 $items = $group->getItems();
22 if (count($items) > 0) {
24 foreach ($group->getItems() as $item) {
31 $tpl->setCurrentBlock(
'head');
32 $tpl->setVariable(
'HEAD', $group->getLabel());
33 $tpl->parseCurrentBlock();
35 $deck = $this->uiFactory
37 ->withNormalCardsSize();
39 $tpl->setCurrentBlock(
'tiles');
40 if ($this->ctrl->isAsynch()) {
41 $tpl->setVariable(
'TILES', $this->uiRenderer->renderAsync($deck));
43 $tpl->setVariable(
'TILES', $this->uiRenderer->render($deck));
45 $tpl->parseCurrentBlock();
47 $tpl->setCurrentBlock(
'grouped_tiles');
48 $tpl->parseCurrentBlock();
59 if ($this->ctrl->isAsynch()) {
60 $html .=
$tpl->getOnLoadCodeForAsynch();
63 $this->tpl->touchBlock(
'row_type_1');
64 $this->tpl->setCurrentBlock(
'container_standard_row');
65 $this->tpl->setVariable(
'BLOCK_ROW_CONTENT', $html);
66 $this->tpl->parseCurrentBlock();
68 $this->tpl->touchBlock(
'container_row');
70 return $this->tpl->get();
81 $itemListGui = $this->listItemFactory->byType($item[
'type']);
85 return $itemListGui->getAsCard(
86 (
int) $item[
'ref_id'],
87 (
int) $item[
'obj_id'],
88 (
string) $item[
'type'],
89 (
string) $item[
'title'],
90 (
string) $item[
'description']
Interface ilPDObjectsRenderer.
getCard(array $item)
Render card.
Class ilPDBaseObjectsRenderer.
Class ilPDObjectsTileRenderer.
render(array $groupedItems, bool $showHeader)
static addListGUIActivationProperty(ilObjectListGUI $a_list_gui, array &$a_item)
Get timing details for list gui.