ILIAS  trunk Revision v12.0_alpha-377-g3641b37b9db
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