ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
InitUIFramework.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
30 {
31  public function init(\ILIAS\DI\Container $c): void
32  {
33  $c["ui.factory"] = function ($c) {
35  $c["ui.factory.counter"],
36  $c["ui.factory.button"],
37  $c["ui.factory.listing"],
38  $c["ui.factory.image"],
39  new \ILIAS\UI\Implementation\Component\Player\Factory(),
40  $c["ui.factory.panel"],
41  $c["ui.factory.modal"],
42  $c["ui.factory.progress"],
43  $c["ui.factory.dropzone"],
44  $c["ui.factory.popover"],
45  $c["ui.factory.divider"],
46  $c["ui.factory.link"],
47  $c["ui.factory.dropdown"],
48  $c["ui.factory.item"],
49  $c["ui.factory.viewcontrol"],
50  $c["ui.factory.chart"],
51  $c["ui.factory.input"],
52  $c["ui.factory.table"],
53  $c["ui.factory.messagebox"],
54  $c["ui.factory.card"],
55  $c["ui.factory.layout"],
56  $c["ui.factory.maincontrols"],
57  $c["ui.factory.tree"],
58  $c["ui.factory.menu"],
59  $c["ui.factory.symbol"],
60  $c["ui.factory.toast"],
61  $c["ui.factory.legacy"],
62  $c["ui.factory.launcher"],
63  $c["ui.factory.entity"],
64  $c["ui.factory.prompt"],
65  );
66  };
67  $c["ui.upload_limit_resolver"] = function ($c) {
68  return new \ILIAS\UI\Implementation\Component\Input\UploadLimitResolver(
69  new class() implements ILIAS\UI\Component\Input\Field\PhpUploadLimit {
70  public function getPhpUploadLimitInBytes(): int
71  {
72  return 0;
73  }
74  },
75  new class() implements ILIAS\UI\Component\Input\Field\GlobalUploadLimit {
76  public function getGlobalUploadLimitInBytes(): ?int
77  {
78  return null;
79  }
80  },
81  );
82  };
83  $c["ui.data_factory"] = function ($c) {
84  return new ILIAS\Data\Factory();
85  };
86  $c["ui.signal_generator"] = function ($c) {
88  };
89  $c["ui.factory.counter"] = function ($c) {
91  };
92  $c["ui.factory.button"] = function ($c) {
94  };
95  $c["ui.factory.listing"] = function ($c) {
97  new ILIAS\UI\Implementation\Component\Listing\Workflow\Factory(),
98  new ILIAS\UI\Implementation\Component\Listing\CharacteristicValue\Factory(),
99  new ILIAS\UI\Implementation\Component\Listing\Entity\Factory(),
100  );
101  };
102  $c["ui.factory.image"] = function ($c) {
104  };
105  $c["ui.factory.panel"] = function ($c) {
107  $c["ui.factory.panel.listing"],
108  new ILIAS\UI\Implementation\Component\Panel\Secondary\Factory(),
109  );
110  };
111  $c["ui.factory.interruptive_item"] = function ($c) {
113  };
114  $c["ui.factory.modal"] = function ($c) {
116  $c["ui.signal_generator"],
117  $c["ui.factory.interruptive_item"],
118  $c["ui.factory.input.field"],
119  );
120  };
121  $c["ui.factory.progress.refresh_interval"] = static fn (\ILIAS\DI\Container $c) =>
122  new class() implements \ILIAS\UI\Component\Progress\AsyncRefreshInterval {
123  public function getRefreshIntervalInMs(): int
124  {
125  return 1_000;
126  }
127  };
128  $c["ui.factory.progress"] = static fn (\ILIAS\DI\Container $c) =>
129  new \ILIAS\UI\Implementation\Component\Progress\Factory(
130  $c["ui.factory.progress.refresh_interval"],
131  $c["ui.signal_generator"],
132  $c["ui.factory.progress.state"],
133  );
134  $c["ui.factory.progress.state"] = static fn (\ILIAS\DI\Container $c) =>
135  new \ILIAS\UI\Implementation\Component\Progress\State\Factory(
136  new \ILIAS\UI\Implementation\Component\Progress\State\Bar\Factory(),
137  );
138  $c["ui.factory.dropzone"] = function ($c) {
139  return new ILIAS\UI\Implementation\Component\Dropzone\Factory($c["ui.factory.dropzone.file"]);
140  };
141  $c["ui.factory.popover"] = function ($c) {
142  return new ILIAS\UI\Implementation\Component\Popover\Factory($c["ui.signal_generator"]);
143  };
144  $c["ui.factory.divider"] = function ($c) {
146  };
147  $c["ui.factory.link"] = function ($c) {
149  };
150  $c["ui.factory.dropdown"] = function ($c) {
152  };
153  $c["ui.factory.item"] = function ($c) {
155  };
156  $c["ui.factory.toast"] = function ($c) {
157  return new ILIAS\UI\Implementation\Component\Toast\Factory($c["ui.signal_generator"]);
158  };
159  $c["ui.factory.viewcontrol"] = function ($c) {
161  $c["ui.signal_generator"]
162  );
163  };
164  $c["ui.factory.chart"] = function ($c) {
166  $c["ui.factory.progressmeter"],
167  $c["ui.factory.bar"]
168  );
169  };
170  $c["ui.factory.input"] = function ($c) {
172  $c["ui.signal_generator"],
173  $c["ui.factory.input.field"],
174  $c["ui.factory.input.container"],
175  $c["ui.factory.input.viewcontrol"]
176  );
177  };
178  $c["ui.factory.table"] = function ($c) {
182  $c["ui.signal_generator"],
183  $c['ui.factory.input.viewcontrol'],
184  $c['ui.factory.input.container.viewcontrol'],
185  $c["ui.data_factory"],
186  $c["ui.factory.table.column"],
187  $c["ui.factory.table.action"],
188  $c["ui.storage"],
189  $data_row_builder,
190  $ordering_row_builder
191  );
192  };
193  $c["ui.factory.table.column"] = function ($c) {
195  $c["lng"]
196  );
197  };
198  $c["ui.factory.table.action"] = function ($c) {
200  };
201  $c["ui.factory.messagebox"] = function ($c) {
203  };
204  $c["ui.factory.card"] = function ($c) {
206  };
207  $c["ui.factory.layout"] = function ($c) {
209  new ILIAS\UI\Implementation\Component\Layout\Page\Factory(),
210  new ILIAS\UI\Implementation\Component\Layout\Alignment\Factory(),
211  );
212  };
213  $c["ui.factory.maincontrols.slate"] = function ($c) {
215  $c['ui.signal_generator'],
216  $c['ui.factory.counter'],
217  $c["ui.factory.symbol"]
218  );
219  };
220  $c["ui.factory.maincontrols"] = function ($c) {
222  $c['ui.signal_generator'],
223  $c['ui.factory.maincontrols.slate']
224  );
225  };
226  $c["ui.factory.menu"] = function ($c) {
228  $c['ui.signal_generator']
229  );
230  };
231  $c["ui.factory.symbol.glyph"] = function ($c) {
233  };
234  $c["ui.factory.symbol.icon"] = function ($c) {
236  };
237  $c["ui.factory.symbol.avatar"] = function ($c) {
239  };
240  $c["ui.factory.symbol"] = function ($c) {
242  $c["ui.factory.symbol.icon"],
243  $c["ui.factory.symbol.glyph"],
244  $c["ui.factory.symbol.avatar"]
245  );
246  };
247  $c["ui.factory.progressmeter"] = function ($c) {
249  };
250  $c["ui.factory.bar"] = function ($c) {
252  };
253  $c["ui.factory.input.field"] = function ($c) {
255  $c["ui.upload_limit_resolver"],
256  $c["ui.signal_generator"],
257  $c["ui.data_factory"],
258  $c["refinery"],
259  $c["lng"]
260  );
261  };
262  $c["ui.factory.input.container"] = function ($c) {
264  $c["ui.factory.input.container.form"],
265  $c["ui.factory.input.container.filter"],
266  $c["ui.factory.input.container.viewcontrol"]
267  );
268  };
269  $c["ui.factory.input.container.form"] = function ($c) {
271  $c["ui.factory.input.field"],
272  $c["ui.signal_generator"]
273  );
274  };
275  $c["ui.factory.input.container.filter"] = function ($c) {
277  $c["ui.signal_generator"],
278  $c["ui.factory.input.field"]
279  );
280  };
281  $c["ui.factory.input.container.viewcontrol"] = function ($c) {
283  $c["ui.signal_generator"],
284  $c["ui.factory.input.viewcontrol"],
285  );
286  };
287  $c["ui.factory.input.viewcontrol"] = function ($c) {
289  $c["ui.factory.input.field"],
290  $c["ui.data_factory"],
291  $c["refinery"],
292  $c["ui.signal_generator"],
293  $c["lng"],
294  );
295  };
296  $c["ui.factory.dropzone.file"] = function ($c) {
298  $c["ui.signal_generator"],
299  $c["ui.factory.input.field"],
300  );
301  };
302  $c["ui.factory.panel.listing"] = function ($c) {
304  };
305  $c["ui.renderer"] = function ($c) {
307  $c["ui.component_renderer_loader"],
308  $c["ui.javascript_binding"],
309  $c["lng"],
310  );
311  };
312  $c["ui.component_renderer_loader"] = function ($c) {
314  new ILIAS\UI\Implementation\Render\LoaderResourceRegistryWrapper(
315  $c["ui.resource_registry"],
316  new ILIAS\UI\Implementation\Render\FSLoader(
317  new ILIAS\UI\Implementation\Render\DefaultRendererFactory(
318  $c["ui.factory"],
319  $c["ui.template_factory"],
320  $c["lng"],
321  $c["ui.javascript_binding"],
322  $c["ui.pathresolver"],
323  $c["ui.data_factory"],
324  $c["help.text_retriever"],
325  $c["ui.upload_limit_resolver"]
326  ),
327  new ILIAS\UI\Implementation\Component\Symbol\Glyph\GlyphRendererFactory(
328  $c["ui.factory"],
329  $c["ui.template_factory"],
330  $c["lng"],
331  $c["ui.javascript_binding"],
332  $c["ui.pathresolver"],
333  $c["ui.data_factory"],
334  $c["help.text_retriever"],
335  $c["ui.upload_limit_resolver"]
336  ),
337  new ILIAS\UI\Implementation\Component\Input\Field\FieldRendererFactory(
338  $c["ui.factory"],
339  $c["ui.template_factory"],
340  $c["lng"],
341  $c["ui.javascript_binding"],
342  $c["ui.pathresolver"],
343  $c["ui.data_factory"],
344  $c["help.text_retriever"],
345  $c["ui.upload_limit_resolver"]
346  ),
347  new ILIAS\UI\Implementation\Component\MessageBox\MessageBoxRendererFactory(
348  $c["ui.factory"],
349  $c["ui.template_factory"],
350  $c["lng"],
351  $c["ui.javascript_binding"],
352  $c["ui.pathresolver"],
353  $c["ui.data_factory"],
354  $c["help.text_retriever"],
355  $c["ui.upload_limit_resolver"]
356  ),
357  new ILIAS\UI\Implementation\Component\Input\Container\Form\FormRendererFactory(
358  $c["ui.factory"],
359  $c["ui.template_factory"],
360  $c["lng"],
361  $c["ui.javascript_binding"],
362  $c["ui.pathresolver"],
363  $c["ui.data_factory"],
364  $c["help.text_retriever"],
365  $c["ui.upload_limit_resolver"]
366  ),
367  )
368  )
369  );
370  };
371  $c["ui.template_factory"] = function ($c) {
373  };
374  $c["ui.resource_registry"] = function ($c) {
376  };
377  $c["ui.javascript_binding"] = function ($c) {
379  };
380 
381  $c["ui.factory.tree"] = function ($c) {
383  new ILIAS\UI\Implementation\Component\Tree\Node\Factory(),
384  );
385  };
386 
387  $c["ui.factory.legacy"] = function ($c) {
388  return new ILIAS\UI\Implementation\Component\Legacy\Factory($c["ui.signal_generator"]);
389  };
390 
391  $c["ui.pathresolver"] = function ($c): ILIAS\UI\Implementation\Render\ImagePathResolver {
392  return new ilImagePathResolver();
393  };
394 
395  $c["ui.factory.launcher"] = function ($c): ILIAS\UI\Implementation\Component\Launcher\Factory {
397  $c["ui.factory.modal"]
398  );
399  };
400 
401  $c["ui.factory.entity"] = function ($c) {
403  };
404 
405  $c["ui.factory.prompt"] = function ($c) {
406  return new ILIAS\UI\Implementation\Component\Prompt\Factory($c["ui.signal_generator"]);
407  };
408 
409  // currently this is will be a session storage because we cannot store
410  // data on the client, see https://mantis.ilias.de/view.php?id=38503.
411  $c["ui.storage"] = function ($c): ArrayAccess {
412  return new class() implements ArrayAccess {
413  public function offsetExists(mixed $offset): bool
414  {
415  return ilSession::has($offset);
416  }
417  public function offsetGet(mixed $offset): mixed
418  {
419  return ilSession::get($offset);
420  }
421  public function offsetSet(mixed $offset, mixed $value): void
422  {
423  if (!is_string($offset)) {
424  throw new InvalidArgumentException('Offset needs to be of type string.');
425  }
426  ilSession::set($offset, $value);
427  }
428  public function offsetUnset(mixed $offset): void
429  {
430  ilSession::clear($offset);
431  }
432  };
433  };
434  }
435 }
static get(string $a_var)
Interface Observer Contains several chained tasks and infos about them.
$c
Definition: deliver.php:25
This is more or less a copy of the removed InitUIFramework file inside the Init component.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
Class HTTPServicesTest.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static has($a_var)
init(\ILIAS\DI\Container $c)
static clear(string $a_var)
static set(string $a_var, $a_val)
Set a value.