ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
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 
230  public function mainBar() : MainBar;
231 
232 
309  public function slate() : Slate\Factory;
310 
340  public function footer(array $links, string $text = '') : Footer;
341 
342 
375  public function modeInfo(string $title, URI $close_action) : ModeInfo;
376 }
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:15
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 is how a factory for buttons looks like.
Definition: Factory.php:12
This describes the Footer.
Definition: Footer.php:11