ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
All Data Structures Namespaces Files Functions Variables Modules Pages
Drilldown.php
Go to the documentation of this file.
1 <?php
2 declare(strict_types=1);
3 
4 /* Copyright (c) 2019 Nils Haagen <nils.haagen@concepts-and-training.de> Extended GPL, see docs/LICENSE */
5 
7 
10 
14 class Drilldown extends LabeledMenu implements IMenu\Drilldown
15 {
17 
21  protected $back_icon;
22 
27  public function __construct($label, array $items)
28  {
29  $this->checkLabelParameter($label);
30  $this->checkItemParameter($items);
31  $this->label = $label;
32  $this->items = $items;
33  }
34 }
trait JavaScriptBindable
Trait for components implementing JavaScriptBindable providing standard implementation.
This describes a Menu Control with a label.
Definition: LabeledMenu.php:13
This describes a Drilldown Menu Control.
Definition: Drilldown.php:14