ILIAS  release_7 Revision v7.30-3-g800a261c036
All Data Structures Namespaces Files Functions Variables Modules Pages
Factory.php
Go to the documentation of this file.
1 <?php
2 
3 /* Copyright (c) 2018 Nils Haagen <nils.haagen@concepts-and-training.de> Extended GPL, see docs/LICENSE */
4 
6 
8 
12 interface Factory
13 {
86  public function metaBar() : MetaBar;
87 
231  public function mainBar() : MainBar;
232 
233 
310  public function slate() : Slate\Factory;
311 
342  public function footer(array $links, string $text = '') : Footer;
343 
344 
379  public function modeInfo(string $title, URI $close_action) : ModeInfo;
380 
445  public function systemInfo(string $headline, string $information_text) : SystemInfo;
446 }
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:16
Builds a Color from either hex- or rgb values.
Definition: Factory.php:13
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:8
The scope of this class is split ilias-conform URI&#39;s into components.
Definition: URI.php:17
This describes the MetaBar.
Definition: MetaBar.php:14
mainBar()
description: purpose: > The Main Bar is a unique page section that bundles access to content- based ...
This describes the Footer.
Definition: Footer.php:15