ILIAS  trunk Revision v11.0_alpha-1731-gff9cd7e2bd3
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
Sub.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
24 
28 class Sub extends Menu implements IMenu\Sub
29 {
30  protected bool $active = false;
31 
35  public function __construct(string $label, array $items)
36  {
37  $this->checkItemParameter($items);
38  $this->label = $label;
39  $this->items = $items;
40  }
41 }
__construct(string $label, array $items)
Definition: Sub.php:35
Level of Drilldown Control.
Definition: Sub.php:28