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 
26 
30 interface 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 }
mode(array $labelled_actions, string $aria_label)
description: purpose: > Mode View Controls enable the switching between different aspects of some da...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This describes a Pagination Control.
Definition: Pagination.php:32
section(Button $previous_action, Component $button, Button $next_action)
description: purpose: > Section View Controls enable the switching between different sections of som...
sortation(array $options, string $selected)
description: purpose: > The Sortation View Control enables users to change the order in which some d...
This is how the factory for UI elements looks.
Definition: Factory.php:30
This describes a Sortation Control.
Definition: Sortation.php:31
pagination()
description: purpose: > Pagination allows structured data being displayed in chunks by limiting the ...