ILIAS  release_8 Revision v8.24
Factory.php
Go to the documentation of this file.
1<?php
2
3declare(strict_types=1);
4
22
26
30interface Factory
31{
56 public function mode(array $labelled_actions, string $aria_label): Mode;
57
77 public function section(Button $previous_action, Component $button, Button $next_action): Section;
78
105 public function sortation(array $options): Sortation;
106
146 public function pagination(): Pagination;
147}
This describes commonalities between standard and primary buttons.
Definition: Button.php:32
This describes the Month Button.
Definition: Month.php:31
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)
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
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition: Factory.php:21
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...