ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
Factory.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
21 namespace ILIAS\UI\Component\Menu;
22 
25 
29 interface Factory
30 {
69  public function drilldown(string $label, array $items): Drilldown;
70 
104  public function sub(string $label, array $items): Sub;
105 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition: Factory.php:21
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This describes a Submenu, i.e.
Definition: Sub.php:26
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition: Drilldown.php:21
This describes a Drilldown Menu Control.
Definition: Drilldown.php:28