ILIAS  trunk Revision v11.0_alpha-1866-gfa368f7776e
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
Listing.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
23 use ILIAS\UI\Component as C;
24 
29 class Listing extends Secondary implements C\Panel\Secondary\Listing
30 {
34  protected array $item_groups = array();
35 
40  public function __construct(string $title, array $item_groups)
41  {
42  $this->title = $title;
43  $this->item_groups = $item_groups;
44  }
45 
49  public function getItemGroups(): array
50  {
51  return $this->item_groups;
52  }
53 }
__construct(string $title, array $item_groups)
Panel Secondary Listing constructor.
Definition: Listing.php:40