ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
Factory.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
26
30interface Factory
31{
55 public function mode(array $labelled_actions, string $aria_label): Mode;
56
76 public function section(Button $previous_action, Component $button, Button $next_action): Section;
77
116 public function sortation(array $options, string $selected): Sortation;
117
157 public function pagination(): Pagination;
158}
This describes commonalities between standard and primary buttons.
Definition: Button.php:34
A component is the most general form of an entity in the UI.
Definition: Component.php:28
This is how the factory for UI elements looks.
Definition: Factory.php:31
mode(array $labelled_actions, string $aria_label)
sortation(array $options, string $selected)
section(Button $previous_action, Component $button, Button $next_action)
This describes a Mode Control.
Definition: Mode.php:29
This describes a Pagination Control.
Definition: Pagination.php:33
This describes a Section Control.
Definition: Section.php:30
This describes a Sortation Control.
Definition: Sortation.php:32
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition: Bulky.php:21