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 
23 use ILIAS\Data\URI;
25 
29 interface Factory
30 {
102  public function metaBar(): MetaBar;
103 
229  public function mainBar(): MainBar;
230 
231 
307  public function slate(): Slate\Factory;
308 
360  public function footer(): Footer;
361 
362 
397  public function modeInfo(string $title, URI $close_action): ModeInfo;
398 
463  public function systemInfo(string $headline, string $information_text): SystemInfo;
464 }
modeInfo(string $title, URI $close_action)
description: purpose: > The Mode Info is a section on a page that informs the user that he is in a c...
This describes the MainBar.
Definition: MainBar.php:33
footer()
description: purpose: > The Footer is a unique page section which can be used to accommodate links t...
Builds a Color from either hex- or rgb values.
Definition: Factory.php:30
systemInfo(string $headline, string $information_text)
description: purpose: > The System Info is a section of the standard page that informs the user abou...
slate()
description: purpose: > A Slate is a collection of Components that serve a specific and singular pur...
metaBar()
description: purpose: > The Meta Bar is a unique page section to accomodate elements that should per...
This is what a factory for slates looks like.
Definition: Factory.php:28
This describes the MetaBar.
Definition: MetaBar.php:32
mainBar()
description: purpose: > The Main Bar allows exploring the content and features of the plattform...