ILIAS  trunk Revision v11.0_alpha-1811-gd2d5443e411
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 
29 
33 interface Factory
34 {
98  public function standard(
99  array $content,
100  ?MetaBar $metabar = null,
101  ?MainBar $mainbar = null,
102  ?Breadcrumbs $locator = null,
103  ?Image $logo = null,
104  ?Image $responsive_logo = null,
105  string $favicon_path = '',
106  ?Container $overlay = null,
107  ?Footer $footer = null,
108  string $title = '',
109  string $short_title = '',
110  string $view_title = ''
111  ): Standard;
112 }
This describes the MainBar.
Definition: MainBar.php:33
standard(array $content, ?MetaBar $metabar=null, ?MainBar $mainbar=null, ?Breadcrumbs $locator=null, ?Image $logo=null, ?Image $responsive_logo=null, string $favicon_path='', ?Container $overlay=null, ?Footer $footer=null, string $title='', string $short_title='', string $view_title='')
description: purpose: > The Standard Page is the regular view upon ILIAS.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
This describes the MetaBar.
Definition: MetaBar.php:32
This describes the Page.
Definition: Standard.php:37