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 
26 interface Factory
27 {
47  public function form(): Form\Factory;
48 
176  public function filter(): Filter\Factory;
177 
207  public function viewControl(): ViewControl\Factory;
208 }
filter()
description: purpose: > Filters are used to let the user limit content within a table, list or any other collection of items presented on the screen.
viewControl()
description: purpose: > The View Control Container orchestrates a collection of View Control Inputs ...
This is what a factory for input containers looks like.
Definition: Factory.php:26
form()
description: purpose: > Forms are used to let the user enter or modify data, check her inputs and su...