ILIAS  release_8 Revision v8.24
Factory.php
Go to the documentation of this file.
1<?php
2
3declare(strict_types=1);
4
22
24
28interface Factory
29{
49 public function standard($title): Standard;
50
71 public function shy(string $title): Shy;
72
86 public function group(string $title, array $items): Group;
87
140 public function notification($title, Icon $lead): Notification;
141}
Builds a Color from either hex- or rgb values.
Definition: Factory.php:17
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
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition: Factory.php:21