ILIAS
release_8 Revision v8.19
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
$
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
w
x
+
Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
+
Variables
$
a
b
c
d
e
f
g
h
j
l
m
p
s
t
u
+
Data Structures
Data Structures
Data Structure Index
Class Hierarchy
+
Data Fields
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Ö
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Variables
$
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Ö
+
Files
File List
+
Globals
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
z
+
Functions
_
a
b
c
d
e
g
h
i
m
n
p
r
s
t
u
v
x
+
Variables
$
a
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
DashboardLayoutProvider.php
Go to the documentation of this file.
1
<?php
2
19
use
ILIAS\GlobalScreen\Scope\Layout\Provider\AbstractModificationProvider
;
20
use
ILIAS\GlobalScreen\Scope\Layout\Provider\ModificationProvider
;
21
use
ILIAS\GlobalScreen\ScreenContext\Stack\ContextCollection
;
22
use
ILIAS\GlobalScreen\ScreenContext\Stack\CalledContexts
;
23
use
ILIAS\GlobalScreen\Scope\Layout\Factory\MainBarModification
;
24
use
ILIAS\UI\Component\MainControls\MainBar
;
25
use
ILIAS\GlobalScreen\ScreenContext\AdditionalData\Collection
;
26
27
class
DashboardLayoutProvider
extends
AbstractModificationProvider
implements
ModificationProvider
28
{
29
protected
?
Collection
$data_collection
;
30
31
public
function
isInterestedInContexts
():
ContextCollection
32
{
33
return
$this->context_collection->
desktop
();
34
}
35
36
public
function
getMainBarModification
(
CalledContexts
$screen_context_stack): ?
MainBarModification
37
{
38
$this->data_collection = $screen_context_stack->
current
()->getAdditionalData();
39
if
(!$this->data_collection->is(\
ilDashboardGUI::DISENGAGE_MAINBAR
,
true
)) {
40
return
null;
41
}
42
43
return
$this->
globalScreen
()->layout()->factory()->mainbar()
44
->withModification(
45
function
(?
MainBar
$mainbar): ?
MainBar
{
46
return
$mainbar !== null ? $mainbar->
withActive
($mainbar::NONE_ACTIVE) : null;
47
}
48
)
49
->withLowPriority();
50
}
51
}
DashboardLayoutProvider
Definition:
DashboardLayoutProvider.php:27
ILIAS\GlobalScreen\Scope\Layout\Factory\MainBarModification
Class MainBar.
Definition:
MainBarModification.php:28
MainBar
ILIAS\UI\Component\MainControls\MainBar
This describes the MainBar.
Definition:
MainBar.php:33
ILIAS\GlobalScreen\Provider\AbstractProvider\globalScreen
globalScreen()
Definition:
AbstractProvider.php:45
DashboardLayoutProvider\$data_collection
Collection $data_collection
Definition:
DashboardLayoutProvider.php:29
ILIAS\GlobalScreen\ScreenContext\AdditionalData\Collection
Class Collection.
Definition:
Collection.php:28
ILIAS\GlobalScreen\ScreenContext\Stack\ContextCollection\desktop
desktop()
Definition:
ContextCollection.php:110
ModificationProvider
ilDashboardGUI\DISENGAGE_MAINBAR
const DISENGAGE_MAINBAR
Definition:
class.ilDashboardGUI.php:34
DashboardLayoutProvider\isInterestedInContexts
isInterestedInContexts()
Definition:
DashboardLayoutProvider.php:31
ILIAS\GlobalScreen\Scope\Layout\Provider\AbstractModificationProvider
Class AbstractModificationProvider.
Definition:
AbstractModificationProvider.php:43
CalledContexts
ILIAS\GlobalScreen\ScreenContext\Stack\CalledContexts\current
current()
Definition:
CalledContexts.php:35
MainBarModification
AbstractModificationProvider
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ContextCollection
Collection
ILIAS\GlobalScreen\ScreenContext\Stack\CalledContexts
Class CalledContexts.
Definition:
CalledContexts.php:31
ILIAS\GlobalScreen\ScreenContext\Stack\ContextCollection
Definition:
ContextCollection.php:29
DashboardLayoutProvider\getMainBarModification
getMainBarModification(CalledContexts $screen_context_stack)
Definition:
DashboardLayoutProvider.php:36
ILIAS\GlobalScreen\Scope\Layout\Provider\ModificationProvider
Interface ModificationProvider.
Definition:
ModificationProvider.php:40
ILIAS\UI\Component\MainControls\MainBar\withActive
withActive(string $active)
Services
Dashboard
GlobalScreen
classes
DashboardLayoutProvider.php
Generated on Fri Apr 4 2025 22:02:44 for ILIAS by
1.8.13 (using
Doxyfile
)