ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
Factory.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
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 
338  public function footer(array $links, string $text = ''): Footer;
339 
340 
375  public function modeInfo(string $title, URI $close_action): ModeInfo;
376 
441  public function systemInfo(string $headline, string $information_text): SystemInfo;
442 }
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 file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition: Factory.php:21
This describes the MainBar.
Definition: MainBar.php:33
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
The scope of this class is split ilias-conform URI&#39;s into components.
Definition: URI.php:34
This describes the MetaBar.
Definition: MetaBar.php:32
mainBar()
description: purpose: > The Main Bar allows exploring the content and features of the plattform...
This describes the Footer.
Definition: Footer.php:32