ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
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 
27 
28 class Factory implements VC\Factory
29 {
31 
32  public function __construct(SignalGeneratorInterface $signal_generator)
33  {
34  $this->signal_generator = $signal_generator;
35  }
36 
37  public function mode(array $labelled_actions, string $aria_label): Mode
38  {
39  return new Mode($labelled_actions, $aria_label);
40  }
41 
42  public function section(Button $previous_action, Component $button, Button $next_action): Section
43  {
44  return new Section($previous_action, $button, $next_action);
45  }
46 
47 
48  public function sortation(array $options, string $selected): Sortation
49  {
50  return new Sortation($options, $selected, $this->signal_generator);
51  }
52 
53  public function pagination(): Pagination
54  {
55  return new Pagination($this->signal_generator);
56  }
57 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
sortation(array $options, string $selected)
Definition: Factory.php:48
__construct(SignalGeneratorInterface $signal_generator)
Definition: Factory.php:32
section(Button $previous_action, Component $button, Button $next_action)
Definition: Factory.php:42
mode(array $labelled_actions, string $aria_label)
Definition: Factory.php:37