ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
Sub.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
24
28class 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}
Level of Drilldown Control.
Definition: Sub.php:29
__construct(string $label, array $items)
Definition: Sub.php:35
This describes a Submenu, i.e.
Definition: Sub.php:27