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
24
29interface Factory
30{
56 public function standard(string $title, $content): Standard;
57
83 public function sub(string $title, $content): Sub;
84
121 public function report(string $title, $sub_panels): Report;
122
155 public function listing(): Listing\Factory;
156
187 public function secondary(): Secondary\Factory;
188}
A component is the most general form of an entity in the UI.
Definition: Component.php:28
This describes a Standard Dropdown.
Definition: Standard.php:27
sub(string $title, $content)
report(string $title, $sub_panels)
standard(string $title, $content)
This describes how a Report could be modified during construction of UI.
Definition: Report.php:29
This describes a Secondary Panel.
Definition: Secondary.php:32
This describes a Sub Panel.
Definition: Sub.php:30