ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
Factory.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
24
29interface Factory
30{
46 public function listing(string $title, array $item_groups): Component\Panel\Secondary\Listing;
47
67 public function legacy(string $title, Component\Legacy\Content $legacy): Component\Panel\Secondary\Legacy;
68}
This describes how a panel could be modified during construction of UI.
Definition: Panel.php:31
legacy(string $title, Component\Legacy\Content $legacy)
listing(string $title, array $item_groups)
This describes a Secondary Panel.
Definition: Secondary.php:32