49 $this->
ui = $DIC->ui();
50 $this->gs = $DIC->globalScreen();
51 $this->lang = $DIC->language();
59 return $this->content ?? $this->
ui->factory()->legacy(
"");
67 $this->gs->collector()->metaBar()->collectOnce();
68 if (!$this->gs->collector()->metaBar()->hasItems()) {
71 $f = $this->
ui->factory();
72 $meta_bar =
$f->mainControls()->metaBar();
74 foreach ($this->gs->collector()->metaBar()->getItemsForUIRepresentation() as $item) {
75 $component = $item->getRenderer()->getComponentForItem($item);
76 if ($this->isComponentSupportedForCombinedSlate($component)) {
77 $meta_bar = $meta_bar->withAdditionalEntry($item->getProviderIdentification()->getInternalIdentifier(), $component);
89 $this->gs->collector()->mainmenu()->collectOnce();
90 if (!$this->gs->collector()->mainmenu()->hasItems()) {
94 $f = $this->
ui->factory();
95 $main_bar =
$f->mainControls()->mainBar();
97 foreach ($this->gs->collector()->mainmenu()->getItemsForUIRepresentation() as $item) {
101 $component = $item->getTypeInformation()->getRenderer()->getComponentForItem($item,
false);
102 $identifier = $this->
hash($item->getProviderIdentification()->serialize());
104 if ($this->isComponentSupportedForCombinedSlate($component)) {
105 $main_bar = $main_bar->withAdditionalEntry($identifier, $component);
108 $more_glyph =
$f->symbol()->glyph()->more(
"#");
109 $main_bar = $main_bar->withMoreButton(
110 $f->button()->bulky($more_glyph, $this->lang->txt(
'more'),
"#")
114 $grid_icon =
$f->symbol()->icon()->custom(\
ilUtil::getImagePath(
"outlined/icon_tool.svg"), $this->lang->txt(
'more'));
115 $this->gs->collector()->tool()->collectOnce();
116 if ($this->gs->collector()->tool()->hasItems()) {
117 $tools_button =
$f->button()->bulky($grid_icon, $this->lang->txt(
'tools'),
"#")->
withEngagedState(
true);
118 $main_bar = $main_bar->withToolsButton($tools_button);
122 foreach ($this->gs->collector()->tool()->getItemsForUIRepresentation() as $tool) {
126 $component = $tool->getTypeInformation()->getRenderer()->getComponentForItem($tool,
false);
128 $identifier = $this->
hash($tool->getProviderIdentification()->serialize());
129 $close_button = null;
130 if ($tool->hasCloseCallback()) {
131 $close_button = $this->
ui->factory()->button()->close()->withOnLoadCode(
static function (
string $id) use ($identifier) {
132 return "$('#$id').on('click', function(){ 134 url: 'src/GlobalScreen/Client/callback_handler.php?item=$identifier' 136 console.log('done closing'); 141 $main_bar = $main_bar->withAdditionalToolEntry($identifier, $component, $tool->isInitiallyHidden(), $close_button);
157 $f = $this->
ui->factory();
159 foreach ($DIC[
'ilLocator']->getItems() as $item) {
160 if (empty($item[
'title']) || empty($item[
'link'])) {
163 $crumbs[] =
$f->link()->standard($item[
'title'], $item[
"link"]);
166 return $f->breadcrumbs($crumbs);
176 return $this->
ui->factory()->image()
177 ->standard($std_logo,
"ILIAS")
185 return $this->
ui->factory()->image()
186 ->standard($responsive_logo,
"ILIAS")
193 if (!$std_logo_link) {
194 $std_logo_link =
"./goto.php?target=root_1";
196 return $std_logo_link;
204 return $this->
ui->factory()->mainControls()->footer([]);
Class StandardPagePartProvider.
This describes the MainBar.
Interface PagePartProvider.
static getStartingPointAsUrl()
Get current starting point setting as URL.
trait SlateSessionStateCode
Class.
static getImagePath($img, $module_path="", $mode="output", $offline=false)
get image path (for images located in a template directory)
This describes the MetaBar.
This describes the Footer.