ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
Factory.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
21 namespace ILIAS\UI\Implementation;
22 
23 use ILIAS\UI\Component as C;
24 
25 // TODO: This might cache the created factories.
27 
28 class Factory implements \ILIAS\UI\Factory
29 {
30  protected C\Counter\Factory $counter_factory;
31  protected C\Button\Factory $button_factory;
32  protected C\Listing\Factory $listing_factory;
33  protected C\Image\Factory $image_factory;
34  protected C\Panel\Factory $panel_factory;
35  protected C\Modal\Factory $modal_factory;
36  protected C\Dropzone\Factory $dropzone_factory;
37  protected C\Popover\Factory $popover_factory;
38  protected C\Divider\Factory $divider_factory;
39  protected C\Link\Factory $link_factory;
40  protected C\Dropdown\Factory $dropdown_factory;
41  protected C\Item\Factory $item_factory;
42  protected C\ViewControl\Factory $viewcontrol_factory;
43  protected C\Chart\Factory $chart_factory;
44  protected C\Input\Factory $input_factory;
45  protected C\Table\Factory $table_factory;
46  protected C\MessageBox\Factory $messagebox_factory;
47  protected C\Card\Factory $card_factory;
48  protected C\Menu\Factory $menu_factory;
49  protected C\Layout\Factory $layout_factory;
50  protected C\MainControls\Factory $maincontrols_factory;
51  protected C\Tree\Factory $tree_factory;
52  protected C\Symbol\Factory $symbol_factory;
53  protected C\Toast\Factory $toast_factory;
54  protected C\Legacy\Factory $legacy_factory;
55 
56  public function __construct(
57  C\Counter\Factory $counter_factory,
58  C\Button\Factory $button_factory,
59  C\Listing\Factory $listing_factory,
60  C\Image\Factory $image_factory,
61  C\Panel\Factory $panel_factory,
62  C\Modal\Factory $modal_factory,
63  C\Dropzone\Factory $dropzone_factory,
64  C\Popover\Factory $popover_factory,
65  C\Divider\Factory $divider_factory,
66  C\Link\Factory $link_factory,
67  C\Dropdown\Factory $dropdown_factory,
68  C\Item\Factory $item_factory,
69  C\ViewControl\Factory $viewcontrol_factory,
70  C\Chart\Factory $chart_factory,
71  C\Input\Factory $input_factory,
72  C\Table\Factory $table_factory,
73  C\MessageBox\Factory $messagebox_factory,
74  C\Card\Factory $card_factory,
75  C\Layout\Factory $layout_factory,
76  C\MainControls\Factory $maincontrols_factory,
77  C\Tree\Factory $tree_factory,
78  C\Menu\Factory $menu_factory,
79  C\Symbol\Factory $symbol_factory,
80  C\Toast\Factory $toast_factory,
81  C\Legacy\Factory $legacy_factory
82  ) {
83  $this->counter_factory = $counter_factory;
84  $this->button_factory = $button_factory;
85  $this->listing_factory = $listing_factory;
86  $this->image_factory = $image_factory;
87  $this->panel_factory = $panel_factory;
88  $this->modal_factory = $modal_factory;
89  $this->dropzone_factory = $dropzone_factory;
90  $this->popover_factory = $popover_factory;
91  $this->divider_factory = $divider_factory;
92  $this->link_factory = $link_factory;
93  $this->dropdown_factory = $dropdown_factory;
94  $this->item_factory = $item_factory;
95  $this->viewcontrol_factory = $viewcontrol_factory;
96  $this->chart_factory = $chart_factory;
97  $this->input_factory = $input_factory;
98  $this->table_factory = $table_factory;
99  $this->messagebox_factory = $messagebox_factory;
100  $this->card_factory = $card_factory;
101  $this->layout_factory = $layout_factory;
102  $this->maincontrols_factory = $maincontrols_factory;
103  $this->tree_factory = $tree_factory;
104  $this->menu_factory = $menu_factory;
105  $this->symbol_factory = $symbol_factory;
106  $this->toast_factory = $toast_factory;
107  $this->legacy_factory = $legacy_factory;
108  }
109 
113  public function counter(): C\Counter\Factory
114  {
115  return $this->counter_factory;
116  }
117 
121  public function button(): C\Button\Factory
122  {
123  return $this->button_factory;
124  }
125 
129  public function card(): C\Card\Factory
130  {
131  return $this->card_factory;
132  }
133 
137  public function deck(array $cards): C\Deck\Deck
138  {
139  return new Component\Deck\Deck($cards, C\Deck\Deck::SIZE_S);
140  }
141 
145  public function listing(): C\Listing\Factory
146  {
147  return $this->listing_factory;
148  }
149 
153  public function image(): C\Image\Factory
154  {
155  return $this->image_factory;
156  }
157 
158  public function player(): C\Player\Factory
159  {
160  return new Component\Player\Factory();
161  }
162 
166  public function legacy(string $content): C\Legacy\Legacy
167  {
168  return $this->legacy_factory->legacy($content);
169  }
170 
174  public function panel(): C\Panel\Factory
175  {
176  return $this->panel_factory;
177  }
178 
182  public function modal(): C\Modal\Factory
183  {
184  return $this->modal_factory;
185  }
186 
190  public function dropzone(): C\Dropzone\Factory
191  {
193  }
194 
198  public function popover(): C\Popover\Factory
199  {
200  return $this->popover_factory;
201  }
202 
206  public function divider(): C\Divider\Factory
207  {
208  return $this->divider_factory;
209  }
210 
214  public function link(): C\Link\Factory
215  {
216  return $this->link_factory;
217  }
218 
222  public function dropdown(): C\Dropdown\Factory
223  {
225  }
226 
230  public function item(): C\Item\Factory
231  {
232  return $this->item_factory;
233  }
234 
235 
239  public function viewControl(): C\ViewControl\Factory
240  {
242  }
243 
247  public function breadcrumbs(array $crumbs): C\Breadcrumbs\Breadcrumbs
248  {
249  return new Component\Breadcrumbs\Breadcrumbs($crumbs);
250  }
251 
255  public function chart(): C\Chart\Factory
256  {
257  return $this->chart_factory;
258  }
259 
263  public function input(): C\Input\Factory
264  {
265  return $this->input_factory;
266  }
267 
271  public function table(): C\Table\Factory
272  {
273  return $this->table_factory;
274  }
275 
279  public function messageBox(): C\MessageBox\Factory
280  {
282  }
283 
287  public function layout(): C\Layout\Factory
288  {
289  return $this->layout_factory;
290  }
291 
295  public function mainControls(): C\MainControls\Factory
296  {
298  }
299 
303  public function tree(): C\Tree\Factory
304  {
305  return $this->tree_factory;
306  }
307 
311  public function menu(): C\Menu\Factory
312  {
313  return $this->menu_factory;
314  }
315 
319  public function symbol(): C\Symbol\Factory
320  {
321  return $this->symbol_factory;
322  }
323 
324  public function toast(): C\Toast\Factory
325  {
326  return $this->toast_factory;
327  }
328 }
link()
description: purpose: > Links are used navigate to other resources or views of the system by clickin...
Definition: Factory.php:214
input()
description: purpose: > In opposite to components with a purely receptive or at most navigational ch...
Definition: Factory.php:263
C Item Factory $item_factory
Definition: Factory.php:41
C Button Factory $button_factory
Definition: Factory.php:31
C Dropzone Factory $dropzone_factory
Definition: Factory.php:36
deck(array $cards)
description: purpose: > Decks are used to display multiple Cards in a grid.They should be used if a ...
Definition: Factory.php:137
C Image Factory $image_factory
Definition: Factory.php:33
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
symbol()
description: purpose: > Symbols are graphical representations of concepts or contexts quickly compre...
Definition: Factory.php:319
C Dropdown Factory $dropdown_factory
Definition: Factory.php:40
menu()
description: purpose: > Menus let the user choose from several (navigational) options.
Definition: Factory.php:311
C MainControls Factory $maincontrols_factory
Definition: Factory.php:50
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
C Toast Factory $toast_factory
Definition: Factory.php:53
C Tree Factory $tree_factory
Definition: Factory.php:51
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition: Bulky.php:21
C Symbol Factory $symbol_factory
Definition: Factory.php:52
C Counter Factory $counter_factory
Definition: Factory.php:30
C Popover Factory $popover_factory
Definition: Factory.php:37
C Layout Factory $layout_factory
Definition: Factory.php:49
chart()
description: purpose: > Charts are used to graphically represent data in various forms such as maps...
Definition: Factory.php:255
tree()
description: purpose: > Trees present hierarchically structured data.rivals: Drilldown: > A Drilldow...
Definition: Factory.php:303
table()
description: purpose: > Tables present a set of uniformly structured data.
Definition: Factory.php:271
listing()
description: purpose: > Listings are used to structure itemised textual information.composition: > Listings may contain ordered, unordered, or labeled items. effect: > Listings hold only textual information. They may contain Links but no Buttons. rules: composition: 1: Listings MUST NOT contain Buttons.
Definition: Factory.php:145
layout()
description: purpose: > Layout components are components used for the overall construction of the us...
Definition: Factory.php:287
This is how the factory for UI elements looks.
Definition: Factory.php:37
C Panel Factory $panel_factory
Definition: Factory.php:34
C Listing Factory $listing_factory
Definition: Factory.php:32
C Divider Factory $divider_factory
Definition: Factory.php:38
C Menu Factory $menu_factory
Definition: Factory.php:48
popover()
description: purpose: > Popovers can be used when space is scarce i.e.within List GUI items...
Definition: Factory.php:198
dropdown()
description: purpose: > Dropdowns reveal a list of interactions that change the system’s status or ...
Definition: Factory.php:222
C Input Factory $input_factory
Definition: Factory.php:44
dropzone()
description: purpose: > Dropzones are containers used to drop either files or other HTML elements...
Definition: Factory.php:190
divider()
description: purpose: > A divider marks a thematic change in a sequence of other components...
Definition: Factory.php:206
toast()
description: purpose: Toasts are temporary messages from the system published to the user...
Definition: Factory.php:324
C MessageBox Factory $messagebox_factory
Definition: Factory.php:46
card()
description: purpose: > A card is a flexible content container for small chunks of structured data...
Definition: Factory.php:129
counter()
description: purpose: > Counter inform users about the quantity of items indicated by a glyph...
Definition: Factory.php:113
viewControl()
description: purpose: > View Controls switch between different visualisation of data.composition: > View Controls are composed mainly of buttons, they are often found in toolbars. effect: Interacting with a view control changes to display in some content area.
Definition: Factory.php:239
mainControls()
description: purpose: > Main Controls are components that are always usable, depending only on overa...
Definition: Factory.php:295
C ViewControl Factory $viewcontrol_factory
Definition: Factory.php:42
C Modal Factory $modal_factory
Definition: Factory.php:35
legacy(string $content)
description: purpose: > This component is used to wrap an existing ILIAS UI element into a UI compon...
Definition: Factory.php:166
C Chart Factory $chart_factory
Definition: Factory.php:43
__construct(C\Counter\Factory $counter_factory, C\Button\Factory $button_factory, C\Listing\Factory $listing_factory, C\Image\Factory $image_factory, C\Panel\Factory $panel_factory, C\Modal\Factory $modal_factory, C\Dropzone\Factory $dropzone_factory, C\Popover\Factory $popover_factory, C\Divider\Factory $divider_factory, C\Link\Factory $link_factory, C\Dropdown\Factory $dropdown_factory, C\Item\Factory $item_factory, C\ViewControl\Factory $viewcontrol_factory, C\Chart\Factory $chart_factory, C\Input\Factory $input_factory, C\Table\Factory $table_factory, C\MessageBox\Factory $messagebox_factory, C\Card\Factory $card_factory, C\Layout\Factory $layout_factory, C\MainControls\Factory $maincontrols_factory, C\Tree\Factory $tree_factory, C\Menu\Factory $menu_factory, C\Symbol\Factory $symbol_factory, C\Toast\Factory $toast_factory, C\Legacy\Factory $legacy_factory)
Definition: Factory.php:56
image()
description: purpose: The Image component is used to display images of various sources.composition: An Image is composed of the image and an alternative text for screen readers.rules: interaction: 1: > Images MAY be included in interactive components. Images MAY also be interactive on their own. Clicking on an Image can e.g. provide navigation to another screen or showing a Modal on the same screen. The usage of an interactive Image MUST be confirmed by the JF to make sure that interactive Images will only be used in meaningful cases. accessibility: 1: > Images MUST contain the alt attribute. This attribute MAY be left empty (alt="") if the image is of decorative nature. According to the WAI, decorative images don’t add information to the content of a page. For example, the information provided by the image might already be given using adjacent text, or the image might be included to make the website more visually attractive (see https://www.w3.org/WAI/tutorials/images/decorative/).
Definition: Factory.php:153
breadcrumbs(array $crumbs)
description: purpose: > Breadcrumbs is a supplemental navigation scheme.It eases the user&#39;s navigati...
Definition: Factory.php:247
item()
description: purpose: > An item displays a unique entity within the system.It shows information abou...
Definition: Factory.php:230
modal()
description: purpose: The Modal forces users to focus on the task at hand.composition: > A Modal is ...
Definition: Factory.php:182
button()
description: purpose: > Buttons trigger interactions that change the system’s or view&#39;s status...
Definition: Factory.php:121
C Table Factory $table_factory
Definition: Factory.php:45
C Link Factory $link_factory
Definition: Factory.php:39
panel()
description: purpose: > Panels are used to group titled content.composition: > Panels consist of a h...
Definition: Factory.php:174
messageBox()
description: purpose: > Message Boxes inform the user about the state of the system or an ongoing us...
Definition: Factory.php:279
player()
description: purpose: > The Player component is used to play and control a media source...
Definition: Factory.php:158
C Card Factory $card_factory
Definition: Factory.php:47
C Legacy Factory $legacy_factory
Definition: Factory.php:54