ILIAS  release_7 Revision v7.30-3-g800a261c036
All Data Structures Namespaces Files Functions Variables Modules Pages
metabar.php
Go to the documentation of this file.
1 <?php
2 function metabar()
3 {
4  global $DIC;
5  $f = $DIC->ui()->factory();
6  $renderer = $DIC->ui()->renderer();
7 
8  return $renderer->render(buildMetabar($f));
9 }
10 
11 function buildMetabar($f)
12 {
13  $help = $f->button()->bulky($f->symbol()->glyph()->help(), 'Help', '#');
14  $search = $f->button()->bulky($f->symbol()->glyph()->search(), 'Search', '#');
15  $user = $f->button()->bulky($f->symbol()->glyph()->user(), 'User', '#');
16 
17  $notes = $f->maincontrols()->slate()->legacy(
18  'Notification',
19  $f->symbol()->glyph()->notification(),
20  $f->legacy('some content')
21  );
22 
23  $metabar = $f->mainControls()->metabar()
24  ->withAdditionalEntry('search', $search)
25  ->withAdditionalEntry('help', $help)
26  ->withAdditionalEntry('notes', $notes)
27  ->withAdditionalEntry('user', $user)
28  ;
29 
30  return $metabar;
31 }
buildMetabar($f)
Definition: metabar.php:11
metabar()
Definition: metabar.php:2
global $DIC
Definition: goto.php:24