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
28interface Factory
29{
50 public function standard($title): Standard;
51
72 public function shy(string $title): Shy;
73
87 public function group(string $title, array $items): Group;
88
141 public function notification($title, Icon $lead): Notification;
142}
Builds a Color from either hex- or rgb values.
Definition: Factory.php:31
This describes a Standard Dropdown.
Definition: Standard.php:27
group(string $title, array $items)
notification($title, Icon $lead)
Common interface to item groups.
Definition: Group.php:30
This describes how an icon could be modified during construction of UI.
Definition: Icon.php:29