ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
Factory.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\UI\Implementation;
22 
24 use ILIAS\UI\Component as C;
25 use ILIAS\UI\Help;
26 
27 class Factory implements FactoryInternal
28 {
29  public function __construct(
30  protected I\Counter\Factory $counter_factory,
31  protected I\Button\Factory $button_factory,
32  protected I\Listing\Factory $listing_factory,
33  protected I\Image\Factory $image_factory,
34  protected I\Player\Factory $player_factory,
35  protected I\Panel\Factory $panel_factory,
36  protected I\Modal\Factory $modal_factory,
37  protected I\Progress\Factory $progress_factory,
38  protected I\Dropzone\Factory $dropzone_factory,
39  protected I\Popover\Factory $popover_factory,
40  protected I\Divider\Factory $divider_factory,
41  protected I\Link\Factory $link_factory,
42  protected I\Dropdown\Factory $dropdown_factory,
43  protected I\Item\Factory $item_factory,
44  protected I\ViewControl\Factory $viewcontrol_factory,
45  protected I\Chart\Factory $chart_factory,
46  protected I\Input\Factory $input_factory,
47  protected I\Table\Factory $table_factory,
48  protected I\MessageBox\Factory $messagebox_factory,
49  protected I\Card\Factory $card_factory,
50  protected I\Layout\Factory $layout_factory,
51  protected I\MainControls\Factory $maincontrols_factory,
52  protected I\Tree\Factory $tree_factory,
53  protected I\Menu\Factory $menu_factory,
54  protected I\Symbol\Factory $symbol_factory,
55  protected I\Toast\Factory $toast_factory,
56  protected I\Legacy\Factory $legacy_factory,
57  protected I\launcher\Factory $launcher_factory,
58  protected I\Entity\Factory $entity_factory,
59  protected I\Prompt\Factory $prompt_factory,
60  ) {
61  }
62 
63  public function counter(): I\Counter\Factory
64  {
65  return $this->counter_factory;
66  }
67 
68  public function button(): I\Button\Factory
69  {
70  return $this->button_factory;
71  }
72 
73  public function card(): I\Card\Factory
74  {
75  return $this->card_factory;
76  }
77 
78  public function deck(array $cards): I\Deck\Deck
79  {
80  return new I\Deck\Deck($cards, C\Deck\Deck::SIZE_S);
81  }
82 
83  public function listing(): I\Listing\Factory
84  {
85  return $this->listing_factory;
86  }
87 
88  public function image(): I\Image\Factory
89  {
90  return $this->image_factory;
91  }
92 
93  public function player(): I\Player\Factory
94  {
95  return $this->player_factory;
96  }
97 
98  public function legacy(): I\Legacy\Factory
99  {
100  return $this->legacy_factory;
101  }
102 
103  public function panel(): I\Panel\Factory
104  {
105  return $this->panel_factory;
106  }
107 
108  public function modal(): I\Modal\Factory
109  {
110  return $this->modal_factory;
111  }
112 
113  public function progress(): I\Progress\Factory
114  {
115  return $this->progress_factory;
116  }
117 
118  public function dropzone(): I\Dropzone\Factory
119  {
120  return $this->dropzone_factory;
121  }
122 
123  public function popover(): I\Popover\Factory
124  {
125  return $this->popover_factory;
126  }
127 
128  public function divider(): I\Divider\Factory
129  {
130  return $this->divider_factory;
131  }
132 
133  public function link(): I\Link\Factory
134  {
135  return $this->link_factory;
136  }
137 
138  public function dropdown(): I\Dropdown\Factory
139  {
140  return $this->dropdown_factory;
141  }
142 
143  public function item(): I\Item\Factory
144  {
145  return $this->item_factory;
146  }
147 
148  public function viewControl(): I\ViewControl\Factory
149  {
150  return $this->viewcontrol_factory;
151  }
152 
153  public function breadcrumbs(array $crumbs): I\Breadcrumbs\Breadcrumbs
154  {
155  return new Component\Breadcrumbs\Breadcrumbs($crumbs);
156  }
157 
158  public function chart(): I\Chart\Factory
159  {
160  return $this->chart_factory;
161  }
162 
163  public function input(): I\Input\Factory
164  {
165  return $this->input_factory;
166  }
167 
168  public function table(): I\Table\Factory
169  {
170  return $this->table_factory;
171  }
172 
173  public function messageBox(): I\MessageBox\Factory
174  {
175  return $this->messagebox_factory;
176  }
177 
178  public function layout(): I\Layout\Factory
179  {
180  return $this->layout_factory;
181  }
182 
183  public function mainControls(): I\MainControls\Factory
184  {
185  return $this->maincontrols_factory;
186  }
187 
188  public function tree(): I\Tree\Factory
189  {
190  return $this->tree_factory;
191  }
192 
193  public function menu(): I\Menu\Factory
194  {
195  return $this->menu_factory;
196  }
197 
198  public function symbol(): I\Symbol\Factory
199  {
200  return $this->symbol_factory;
201  }
202 
203  public function toast(): I\Toast\Factory
204  {
205  return $this->toast_factory;
206  }
207 
208  public function helpTopics(string ...$topics): array
209  {
210  return array_map(
211  fn($t) => new Help\Topic($t),
212  $topics
213  );
214  }
215 
216  public function launcher(): I\Launcher\Factory
217  {
218  return $this->launcher_factory;
219  }
220 
221  public function entity(): I\Entity\Factory
222  {
223  return $this->entity_factory;
224  }
225 
226  public function prompt(): I\Prompt\Factory
227  {
228  return $this->prompt_factory;
229  }
230 }
link()
description: purpose: > Links are used navigate to other resources or views of the system by clickin...
Definition: Factory.php:133
input()
description: purpose: > In opposite to components with a purely receptive or at most navigational ch...
Definition: Factory.php:163
deck(array $cards)
description: purpose: > Decks are used to display multiple Cards in a grid.
Definition: Factory.php:78
This is just a class that marks a string as a help topic.
Definition: Topic.php:26
symbol()
description: purpose: > Symbols are graphical representations of concepts or contexts quickly compre...
Definition: Factory.php:198
menu()
description: purpose: > Menus let the user choose from several (navigational) options.
Definition: Factory.php:193
__construct(protected I\Counter\Factory $counter_factory, protected I\Button\Factory $button_factory, protected I\Listing\Factory $listing_factory, protected I\Image\Factory $image_factory, protected I\Player\Factory $player_factory, protected I\Panel\Factory $panel_factory, protected I\Modal\Factory $modal_factory, protected I\Progress\Factory $progress_factory, protected I\Dropzone\Factory $dropzone_factory, protected I\Popover\Factory $popover_factory, protected I\Divider\Factory $divider_factory, protected I\Link\Factory $link_factory, protected I\Dropdown\Factory $dropdown_factory, protected I\Item\Factory $item_factory, protected I\ViewControl\Factory $viewcontrol_factory, protected I\Chart\Factory $chart_factory, protected I\Input\Factory $input_factory, protected I\Table\Factory $table_factory, protected I\MessageBox\Factory $messagebox_factory, protected I\Card\Factory $card_factory, protected I\Layout\Factory $layout_factory, protected I\MainControls\Factory $maincontrols_factory, protected I\Tree\Factory $tree_factory, protected I\Menu\Factory $menu_factory, protected I\Symbol\Factory $symbol_factory, protected I\Toast\Factory $toast_factory, protected I\Legacy\Factory $legacy_factory, protected I\launcher\Factory $launcher_factory, protected I\Entity\Factory $entity_factory, protected I\Prompt\Factory $prompt_factory,)
Definition: Factory.php:29
prompt()
description: purpose: > A Prompt requires a user to make some inputs to the system, like making choices, acknowleding an important information or filling out a form.
Definition: Factory.php:226
progress()
description: purpose: > A Progress component is designed to represent the users advancement within a...
Definition: Factory.php:113
legacy()
description: purpose: > legacy components are used as provisional elements in the UI framework while...
Definition: Factory.php:98
chart()
description: purpose: > Charts are used to graphically represent data in various forms such as maps...
Definition: Factory.php:158
helpTopics(string ... $topics)
description: purpose: > Help Topics can be attached to certain components.
Definition: Factory.php:208
tree()
description: purpose: > Trees present hierarchically structured data.
Definition: Factory.php:188
table()
description: purpose: > Tables present a set of uniformly structured data.
Definition: Factory.php:168
listing()
description: purpose: > Listings are used to structure itemised textual information.
Definition: Factory.php:83
layout()
description: purpose: > Layout components are components used for the overall construction of the us...
Definition: Factory.php:178
popover()
description: purpose: > Popovers can be used when space is scarce i.e.
Definition: Factory.php:123
dropdown()
description: purpose: > Dropdowns reveal a list of interactions that change the system’s status or ...
Definition: Factory.php:138
dropzone()
description: purpose: > Dropzones are containers used to drop either files or other HTML elements...
Definition: Factory.php:118
divider()
description: purpose: > A divider marks a thematic change in a sequence of other components...
Definition: Factory.php:128
toast()
description: purpose: Toasts are temporary messages from the system published to the user...
Definition: Factory.php:203
card()
description: purpose: > A card is a flexible content container for small chunks of structured data...
Definition: Factory.php:73
counter()
description: purpose: > Counter inform users about the quantity of items indicated by a glyph...
Definition: Factory.php:63
viewControl()
description: purpose: > View Controls switch between different visualisation of data.
Definition: Factory.php:148
mainControls()
description: purpose: > Main Controls are components that are always usable, depending only on overa...
Definition: Factory.php:183
image()
description: purpose: The Image component is used to display images of various sources.
Definition: Factory.php:88
launcher()
description: purpose: > The Launcher starts an object, a process or a workflow.
Definition: Factory.php:216
breadcrumbs(array $crumbs)
description: purpose: > Breadcrumbs is a supplemental navigation scheme.
Definition: Factory.php:153
item()
description: purpose: > An item displays a unique entity within the system.
Definition: Factory.php:143
modal()
description: purpose: The Modal forces users to focus on the task at hand.
Definition: Factory.php:108
entity()
description: purpose: > An Entity displays information about entities within the system...
Definition: Factory.php:221
button()
description: purpose: > Buttons trigger interactions that change the system’s or view&#39;s status...
Definition: Factory.php:68
panel()
description: purpose: > Panels are used to group titled content.
Definition: Factory.php:103
messageBox()
description: purpose: > Message Boxes inform the user about the state of the system or an ongoing us...
Definition: Factory.php:173
player()
description: purpose: > The Player component is used to play and control a media source...
Definition: Factory.php:93