ILIAS  trunk Revision v11.0_alpha-1715-g7fc467680fb
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
Factory.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
25 
26 class Factory implements IMenu\Factory
27 {
29 
30  public function __construct(SignalGeneratorInterface $signal_generator)
31  {
32  $this->signal_generator = $signal_generator;
33  }
34 
35  public function drilldown(string $label, array $items): Drilldown
36  {
37  return new Drilldown($this->signal_generator, $label, $items);
38  }
39 
40  public function sub(string $label, array $items): Sub
41  {
42  return new Sub($label, $items);
43  }
44 }
drilldown(string $label, array $items)
description: purpose: > A Drilldown Menu offers a partial view on a larger set of hierarchically str...
Definition: Factory.php:35
sub(string $label, array $items)
description: purpose: > Menus offer navigational options to the user.
Definition: Factory.php:40
Level of Drilldown Control.
Definition: Sub.php:28
__construct(SignalGeneratorInterface $signal_generator)
Definition: Factory.php:30
SignalGeneratorInterface $signal_generator
Definition: Factory.php:28