ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilDashObjectsTableRenderer.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 {
23  protected object $parent_gui;
24 
25  public function __construct(object $parent_gui)
26  {
27  $this->parent_gui = $parent_gui;
28  }
29 
30  public function render(array $groupedItems): string
31  {
32  $cnt = 0;
33  $html = "";
34  foreach ($groupedItems as $group) {
35  $items = $group->getItems();
36  if (count($items) > 0) {
37  $table = new ilDashObjectsTableGUI($this->parent_gui, "render", $cnt++);
38  $table->setTitle($group->getLabel());
39  $table->setData($group->getItems());
40  $html .= $table->getHTML();
41  }
42  }
43  return $html;
44  }
45 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...