ILIAS  release_8 Revision v8.24
Sub.php
Go to the documentation of this file.
1<?php
2
3declare(strict_types=1);
4
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
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition: Drilldown.php:21
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition: Drilldown.php:21