ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
Factory.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
23use ILIAS\UI\Component\MainControls\Mainbar;
29
33interface 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}
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='')
This describes the Page.
Definition: Standard.php:38
This describes the MainBar.
Definition: MainBar.php:34
This describes the MetaBar.
Definition: MetaBar.php:33