ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
Drilldown.php
Go to the documentation of this file.
1<?php
2declare(strict_types=1);
3
4/* Copyright (c) 2019 Nils Haagen <nils.haagen@concepts-and-training.de> Extended GPL, see docs/LICENSE */
5
7
10
14class 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}
An exception for terminatinating execution or to throw for unit testing.
This describes a Drilldown Menu Control.
Definition: Drilldown.php:15
This describes a Menu Control with a label.
Definition: LabeledMenu.php:14
trait JavaScriptBindable
Trait for components implementing JavaScriptBindable providing standard implementation.