ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
ui.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
6 
10 
11 function ui(): string
12 {
13  global $DIC;
14  $f = $DIC->ui()->factory();
15  $renderer = $DIC->ui()->renderer();
16 
17  $url = 'src/UI/examples/Layout/Page/Standard/ui.php?new_ui=1';
18  $page_demo = $f->link()->standard('See UI in fullscreen-mode', $url);
19 
20  return $renderer->render([
21  $page_demo
22  ]);
23 }
24 
25 global $DIC;
26 
27 //Render Page Layout in Fullscreen mode
28 if (basename($_SERVER["SCRIPT_FILENAME"]) == "ui.php") {
29  chdir('../../../../../../');
30  require_once("libs/composer/vendor/autoload.php");
32  $refinery = $DIC->refinery();
33  $request_wrapper = $DIC->http()->wrapper()->query();
34 }
35 
36 if (isset($request_wrapper) && isset($refinery) && $request_wrapper->has('new_ui') && $request_wrapper->retrieve('new_ui', $refinery->kindlyTo()->string()) == '1') {
38 }
39 
41 {
42  $f = $dic->ui()->factory();
43  $renderer = $dic->ui()->renderer();
44  $logo = $f->image()->responsive("templates/default/images/HeaderIcon.svg", "ILIAS");
45  $responsive_logo = $f->image()->responsive("templates/default/images/HeaderIconResponsive.svg", "ILIAS");
46  $breadcrumbs = pagedemoCrumbs($f);
47  $metabar = pagedemoMetabar($f);
48  $mainbar = pagedemoMainbar($f, $renderer);
49  $footer = pagedemoFooter($f);
50  $content = pagedemoContent($f, $renderer, $mainbar);
51  $tc = $dic->ui()->factory()->toast()->container();
52 
53  $page = $f->layout()->page()->standard(
54  $content,
55  $metabar,
56  $mainbar,
57  $breadcrumbs,
58  $logo,
59  $responsive_logo,
60  "./templates/default/images/favicon.ico",
61  $tc,
62  $footer,
63  'UI PAGE DEMO', //page title
64  'ILIAS', //short title
65  'Std. Page Demo' //view title
66  )
67  ->withUIDemo(true);
68 
69  return $renderer->render($page);
70 }
71 
72 if (isset($request_wrapper) && isset($refinery) && $request_wrapper->has('replaced') && $request_wrapper->retrieve('replaced', $refinery->kindlyTo()->string()) == '1') {
73  echo('Helo. Content from RPC.');
74  exit();
75 }
76 
80 function pagedemoCrumbs($f)
81 {
82  $crumbs = [
83  $f->link()->standard("entry1", '#'),
84  $f->link()->standard("entry2", '#'),
85  $f->link()->standard("entry3", '#'),
86  $f->link()->standard("entry4", '#')
87  ];
88  return $f->breadcrumbs($crumbs);
89 }
90 
91 function pagedemoContent(\ILIAS\UI\Factory $f, Renderer $r, MainBar $mainbar): array
92 {
93  $tools = $mainbar->getToolEntries();
94 
95  $second_tool = array_values($tools)[1];
96  $url = "./src/UI/examples/Layout/Page/Standard/ui.php?replaced=1";
97  $replace_signal = $second_tool->getReplaceSignal()->withAsyncRenderUrl($url);
98  $replace_btn = $f->button()->standard('replace contents in 2nd tool', $replace_signal);
99 
100  $engage_signal = $mainbar->getEngageToolSignal(array_keys($tools)[2]);
101  $invisible_tool_btn = $f->button()->standard('show the hidden tool', $engage_signal);
102 
103  return [
104  $f->panel()->standard(
105  'Using Signals',
106  $f->legacy(
107  "This button will replace the contents of the second tool-slate.<br />"
108  . "Goto Tools, second entry and click it.<br />"
109  . $r->render($replace_btn)
110  . "<br><br>This will unhide and activate another tool<br />"
111  . $r->render($invisible_tool_btn)
112  )
113  ),
114 
115  $f->panel()->standard(
116  'Demo Content 2',
117  $f->legacy("some content<br>some content<br>some content<br>x.")
118  ),
119  $f->panel()->standard(
120  'Demo Content 3',
121  $f->legacy(loremIpsum())
122  ),
123  $f->panel()->standard(
124  'Demo Content 4',
125  $f->legacy("some content<br>some content<br>some content<br>x.")
126  )
127  ];
128 }
129 
130 function pagedemoFooter(\ILIAS\UI\Factory $f): \ILIAS\UI\Component\MainControls\Footer
131 {
132  $df = new \ILIAS\Data\Factory();
133  $text = 'Additional info:';
134  $links = [];
135  $links[] = $f->link()->standard("Goto ILIAS", "http://www.ilias.de");
136  $links[] = $f->link()->standard("Goto ILIAS", "http://www.ilias.de");
137 
138  return $f->mainControls()->footer($links, $text)
139  ->withPermanentURL(
140  $df->uri(
141  ($_SERVER['REQUEST_SCHEME'] ?? "http") . '://'
142  . ($_SERVER['SERVER_NAME'] ?? "localhost") . ':'
143  . ($_SERVER['SERVER_PORT'] ?? "80")
144  . ($_SERVER['SCRIPT_NAME'] ?? "") . '?'
145  . ($_SERVER['QUERY_STRING'] ?? "")
146  )
147  );
148 }
149 
150 function pagedemoMetabar(\ILIAS\UI\Factory $f): \ILIAS\UI\Component\MainControls\MetaBar
151 {
152  $help = $f->button()->bulky($f->symbol()->glyph()->help(), 'Help', '#');
153  $user = $f->button()->bulky($f->symbol()->glyph()->user(), 'User', '#');
154  $search = $f->maincontrols()->slate()->legacy(
155  'Search',
156  $f->symbol()->glyph()->search()->withCounter($f->counter()->status(1)),
157  $f->legacy(substr(loremIpsum(), 0, 180))
158  );
159  $notes = $f->maincontrols()->slate()->legacy(
160  'Notification',
161  $f->symbol()->glyph()->notification()->withCounter($f->counter()->novelty(3)),
162  $f->legacy('<p>some content</p>')
163  );
164 
165  return $f->mainControls()->metaBar()
166  ->withAdditionalEntry('search', $search)
167  ->withAdditionalEntry('help', $help)
168  ->withAdditionalEntry('notes', $notes)
169  ->withAdditionalEntry('user', $user);
170 }
171 
173 {
174  $tools_btn = $f->button()->bulky(
175  $f->symbol()->icon()->custom('./src/UI/examples/Layout/Page/Standard/grid.svg', ''),
176  'Tools',
177  '#'
178  );
179 
180  $mainbar = $f->mainControls()->mainBar()
181  ->withToolsButton($tools_btn);
182 
183  $entries = [];
184  $entries['repository'] = getDemoEntryRepository($f);
185  $entries['pws'] = getDemoEntryPersonalWorkspace($f, $r);
186  $entries['achievements'] = getDemoEntryAchievements($f);
187  $entries['communication'] = getDemoEntryCommunication($f);
188  $entries['organisation'] = getDemoEntryOrganisation($f);
189  $entries['administration'] = getDemoEntryAdministration($f);
190 
191  foreach ($entries as $id => $entry) {
192  $mainbar = $mainbar->withAdditionalEntry($id, $entry);
193  }
194 
195  $tools = getDemoEntryTools($f);
196 
197  return $mainbar
198  ->withAdditionalToolEntry('tool1', $tools['tool1'], false, $f->button()->close())
199  ->withAdditionalToolEntry('tool2', $tools['tool2'])
200  ->withAdditionalToolEntry('tool3', $tools['tool3'], true, $f->button()->close())
201  ->withAdditionalToolEntry('tool4', $tools['tool4'], false, $f->button()->close());
202 }
203 
204 
205 function getDemoEntryRepository(\ILIAS\UI\Factory $f): \ILIAS\UI\Component\MainControls\Slate\Combined
206 {
207  $symbol = $f->symbol()->icon()
208  ->custom('./src/UI/examples/Layout/Page/Standard/layers.svg', '')
209  ->withSize('small');
210  $slate = $f->maincontrols()->slate()->combined('Repository', $symbol);
211 
212  $icon = $f->symbol()->icon()
213  ->standard('', '')
214  ->withSize('small')
215  ->withAbbreviation('X');
216 
217  $button = $f->button()->bulky(
218  $icon,
219  'Button 1',
220  './src/UI/examples/Layout/Page/Standard/ui.php?new_ui=1'
221  );
222 
223  $df = new \ILIAS\Data\Factory();
224  $url = $df->uri(
225  ($_SERVER['REQUEST_SCHEME'] ?? "http") . '://'
226  . ($_SERVER['SERVER_NAME'] ?? "localhost") . ':'
227  . ($_SERVER['SERVER_PORT'] ?? "80")
228  . ($_SERVER['SCRIPT_NAME'] ?? "") . '?'
229  . ($_SERVER['QUERY_STRING'] ?? "")
230  );
231  $link1 = $f->link()->bulky($icon, 'Favorites (Link)', $url);
232  $link2 = $f->link()->bulky($icon, 'Courses (Link2)', $url);
233  $link3 = $f->link()->bulky($icon, 'Groups (Link)', $url);
234 
235  $slate = $slate
236  ->withAdditionalEntry($button->withLabel('Repository - Home'))
237  ->withAdditionalEntry($button->withLabel('Repository - Tree'))
238  ->withAdditionalEntry($button->withLabel('Repository - Last visited'))
239  ->withAdditionalEntry($link1)
240  ->withAdditionalEntry($link2)
241  ->withAdditionalEntry($link3)
242  ->withAdditionalEntry($button->withLabel('Study Programme'))
243  ->withAdditionalEntry($button->withLabel('Own Repository-Objects'));
244 
245  foreach (range(1, 20) as $cnt) {
246  $slate = $slate->withAdditionalEntry($button->withLabel('fillup ' . $cnt));
247  }
248 
249  return $slate;
250 }
251 
252 function getDemoEntryPersonalWorkspace(\ILIAS\UI\Factory $f, Renderer $r): \ILIAS\UI\Component\MainControls\Slate\Combined
253 {
254  $icon = $f->symbol()->icon()
255  ->standard('', '')
256  ->withSize('small')
257  ->withAbbreviation('X');
258 
259  $button = $f->button()->bulky(
260  $icon,
261  'Button 1',
262  './src/UI/examples/Layout/Page/Standard/ui.php?new_ui=1'
263  );
264 
265  $symbol = $f->symbol()->icon()
266  ->custom('./src/UI/examples/Layout/Page/Standard/user.svg', '')
267  ->withSize('small');
268 
269  $slate = $f->maincontrols()->slate()
270  ->combined('Personal Workspace', $symbol);
271 
272  $symbol = $f->symbol()->icon()
273  ->custom('./src/UI/examples/Layout/Page/Standard/bookmarks.svg', '')
274  ->withSize('small');
275 
276  $bookmarks = $f->legacy(implode('<br />', [
277  $r->render($f->button()->shy('my bookmark 1', '#')),
278  $r->render($f->button()->shy('my bookmark 2', '#'))
279  ]));
280  $slate_bookmarks = $f->maincontrols()->slate()
281  ->legacy('Bookmarks', $symbol, $bookmarks);
282 
283  return $slate
284  ->withAdditionalEntry($button->withLabel('Overview'))
285  ->withAdditionalEntry($slate_bookmarks)
286  ->withAdditionalEntry($button->withLabel('Calendar'))
287  ->withAdditionalEntry($button->withLabel('Task'))
288  ->withAdditionalEntry($button->withLabel('Portfolios'))
289  ->withAdditionalEntry($button->withLabel('Personal Resources'))
290  ->withAdditionalEntry($button->withLabel('Shared Resources'))
291  ->withAdditionalEntry($button->withLabel('Notes'))
292  ->withAdditionalEntry($button->withLabel('News'))
293  ->withAdditionalEntry($button->withLabel('Background Tasks'))
294  ->withAdditionalEntry($slate_bookmarks);
295 }
296 
298 {
299  $symbol = $f->symbol()->icon()
300  ->custom('./src/UI/examples/Layout/Page/Standard/achievements.svg', '')
301  ->withSize('small');
302  return $f->maincontrols()->slate()->legacy(
303  'Achievements',
304  $symbol,
305  $f->legacy('content: Achievements')
306  );
307 }
308 
310 {
311  $symbol = $f->symbol()->icon()
312  ->custom('./src/UI/examples/Layout/Page/Standard/communication.svg', '')
313  ->withSize('small');
314  return $f->maincontrols()->slate()->legacy(
315  'Communication',
316  $symbol,
317  $f->legacy('content: Communication')
318  );
319 }
320 
321 function getDemoEntryOrganisation(\ILIAS\UI\Factory $f): \ILIAS\UI\Component\MainControls\Slate\Combined
322 {
323  $symbol = $f->symbol()->icon()
324  ->custom('./src/UI/examples/Layout/Page/Standard/organisation.svg', '')
325  ->withSize('small');
326 
327  $sf = $f->maincontrols()->slate();
328  return $sf->combined('Organisation', $symbol)
329  ->withAdditionalEntry(
330  $sf->combined('1', $symbol)
331  ->withAdditionalEntry($sf->combined('1.1', $symbol))
332  ->withAdditionalEntry(
333  $sf->combined('1.2', $symbol)
334  ->withAdditionalEntry($sf->combined('1.2.1', $symbol))
335  ->withAdditionalEntry($sf->combined('1.2.2', $symbol))
336  )
337  )
338  ->withAdditionalEntry(
339  $sf->combined('2', $symbol)
340  ->withAdditionalEntry($sf->combined('2.1', $symbol))
341  )
342  ->withAdditionalEntry($sf->combined('3', $symbol))
343  ->withAdditionalEntry($sf->combined('4', $symbol));
344 }
345 
347 {
348  $symbol = $f->symbol()->icon()
349  ->custom('./src/UI/examples/Layout/Page/Standard/administration.svg', '')
350  ->withSize('small');
351  return $f->maincontrols()->slate()->legacy(
352  'Administration',
353  $symbol,
354  $f->legacy('content: Administration')
355  );
356 }
357 
359 {
360  $tools = [];
361 
362  $symbol = $f->symbol()->icon()
363  ->custom('./src/UI/examples/Layout/Page/Standard/question.svg', '')
364  ->withSize('small');
365  $slate = $f->maincontrols()->slate()->legacy(
366  'Help',
367  $symbol,
368  $f->legacy('
369  <h2>Help</h2>
370  <p>
371  Some Text for help entry
372  </p>
373  <p>
374  <button onclick="alert(\'helo - tool 1 \');">Some Dummybutton</button>
375  <br>
376  <button onclick="alert(\'helo - tool 1, button 2 \');">some other dummybutton</button>
377  </p>
378  ')
379  );
380  $tools['tool1'] = $slate;
381 
382  $symbol = $f->symbol()->icon()
383  ->custom('./src/UI/examples/Layout/Page/Standard/pencil.svg', '')
384  ->withSize('small');
385  $slate = $f->maincontrols()->slate()->legacy(
386  'Editor',
387  $symbol,
388  $f->legacy('
389  <h2>Editor</h2>
390  <p>
391  Some Text for editor entry
392  <br><br>
393  <button onclick="alert(\'helo\');">Some Dummybutton</button>
394  <br><br>
395  end of tool.
396  </p>
397  ')
398  );
399  $tools['tool2'] = $slate;
400 
401  $symbol = $f->symbol()->icon()
402  ->custom('./src/UI/examples/Layout/Page/Standard/notebook.svg', '')
403  ->withSize('small');
404  $slate = $f->maincontrols()->slate()->legacy(
405  'Initially hidden',
406  $symbol,
407  $f->legacy(loremIpsum())
408  );
409  $tools['tool3'] = $slate;
410 
411  $slate = $f->maincontrols()->slate()->legacy(
412  'Closable Tool',
413  $symbol,
414  $f->legacy(loremIpsum())
415  );
416  $tools['tool4'] = $slate;
417 
418 
419  return $tools;
420 }
421 
422 function loremIpsum(): string
423 {
424  return <<<EOT
425  <h2>Lorem ipsum</h2>
426  <p>
427  Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod
428  tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.
429  At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren,
430  no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet,
431  consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et
432  dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo
433  duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus
434  est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur
435  sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore
436  magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo
437  dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est
438  Lorem ipsum dolor sit amet.
439  </p>
440  <p>
441  Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie
442  consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan
443  et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis
444  dolore te feugait nulla facilisi. Lorem ipsum dolor sit amet, consectetuer
445  adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore
446  magna aliquam erat volutpat.
447  </p>
448  <p>
449  Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit
450  lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure
451  dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore
452  eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui
453  blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.
454  </p>
455  <p>
456  Nam liber tempor cum soluta nobis eleifend option congue nihil imperdiet doming
457  id quod mazim placerat facer
458  </p>
459 EOT;
460 }
An entity that renders components to a string output.
Definition: Renderer.php:30
getDemoEntryAdministration(\ILIAS\UI\Factory $f)
Definition: ui.php:346
exit
Definition: login.php:28
getDemoEntryRepository(\ILIAS\UI\Factory $f)
Definition: ui.php:205
getDemoEntryAchievements(\ILIAS\UI\Factory $f)
Definition: ui.php:297
Class Factory.
This describes the MainBar.
Definition: MainBar.php:33
pagedemoContent(\ILIAS\UI\Factory $f, Renderer $r, MainBar $mainbar)
Definition: ui.php:91
render($component, ?Renderer $root=null)
Render given component.
Class ChatMainBarProvider .
getDemoEntryCommunication(\ILIAS\UI\Factory $f)
Definition: ui.php:309
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
pagedemoMainbar(\ILIAS\UI\Factory $f, Renderer $r)
Definition: ui.php:172
pagedemoMetabar(\ILIAS\UI\Factory $f)
Definition: ui.php:150
if(basename($_SERVER["SCRIPT_FILENAME"])=="ui.php") if(isset($request_wrapper) &&isset($refinery) && $request_wrapper->has('new_ui') && $request_wrapper->retrieve('new_ui', $refinery->kindlyTo() ->string())=='1') renderFooterInFullscreenMode(Container $dic)
Definition: ui.php:40
Customizing of pimple-DIC for ILIAS.
Definition: Container.php:31
static initILIAS()
ilias initialisation
if(isset($request_wrapper) &&isset($refinery) && $request_wrapper->has('replaced') && $request_wrapper->retrieve('replaced', $refinery->kindlyTo() ->string())=='1') pagedemoCrumbs($f)
Below are helpers for the construction of demo-content.
Definition: ui.php:80
$_SERVER['HTTP_HOST']
Definition: raiseError.php:10
getDemoEntryOrganisation(\ILIAS\UI\Factory $f)
Definition: ui.php:321
getDemoEntryTools(\ILIAS\UI\Factory $f)
Definition: ui.php:358
pagedemoFooter(\ILIAS\UI\Factory $f)
Definition: ui.php:130
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23
$dic
Definition: result.php:32
withToolsButton(Button\Bulky $button)
Set button for the tools-trigger.
$url
getEngageToolSignal(string $tool_id)
Signal to engage a tool from outside the MainBar.
ui()
Get the interface to get services from UI framework.
Definition: Container.php:118
getDemoEntryPersonalWorkspace(\ILIAS\UI\Factory $f, Renderer $r)
Definition: ui.php:252
Refinery Factory $refinery