ILIAS
release_7 Revision v7.30-3-g800a261c036
◀ 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
p
r
s
t
w
+
Functions
_
a
b
c
f
g
h
i
r
s
t
w
+
Variables
$
c
d
e
f
g
h
j
l
m
p
s
t
+
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
q
r
s
t
u
v
w
x
z
+
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
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
class.ilWorkspaceGlobalScreenProvider.php
Go to the documentation of this file.
1
<?php
namespace
ILIAS\PersonalWorkspace\Provider
;
2
3
use
ILIAS\GlobalScreen\Scope\MainMenu\Provider\AbstractStaticMainMenuProvider
;
4
use
ILIAS\MainMenu\Provider\StandardTopItemsProvider
;
5
11
class
WorkspaceMainBarProvider
extends
AbstractStaticMainMenuProvider
12
{
13
17
public
function
getStaticTopItems
() : array
18
{
19
return
[];
20
}
21
22
26
public
function
getStaticSubItems
() : array
27
{
28
$dic
=
$this->dic
;
29
30
$title = $this->dic->language()->txt(
"mm_personal_and_shared_r"
);
31
$icon = $this->dic->ui()->factory()->symbol()->icon()->standard(
"fold"
, $title)->withIsOutlined(
true
);
32
33
return
[
34
$this->mainmenu->link($this->
if
->identifier(
'mm_pd_wsp'
))
35
->withTitle($title)
36
->withAction(
"ilias.php?baseClass=ilDashboardGUI&cmd=jumpToWorkspace"
)
37
->withParent(
StandardTopItemsProvider::getInstance
()->getPersonalWorkspaceIdentification())
38
->withPosition(60)
39
->withSymbol($icon)
40
->withNonAvailableReason($this->dic->ui()->factory()->legacy(
"{$this->dic->language()->txt('component_not_active')}"
))
41
->withAvailableCallable(
42
function
() use (
$dic
) {
43
return
(
bool
) (!
$dic
->settings()->get(
"disable_personal_workspace"
));
44
}
45
),
46
];
47
}
48
}
StandardTopItemsProvider
ILIAS\GlobalScreen\Scope\MainMenu\Provider\AbstractStaticMainMenuProvider
Interface StaticMainMenuProvider.
Definition:
AbstractStaticMainMenuProvider.php:32
AbstractStaticMainMenuProvider
if
if(!file_exists(getcwd() . '/ilias.ini.php'))
registration confirmation script for ilias
Definition:
confirmReg.php:12
ILIAS\MainMenu\Provider\StandardTopItemsProvider\getInstance
static getInstance()
Definition:
StandardTopItemsProvider.php:71
ILIAS\PersonalWorkspace\Provider\WorkspaceMainBarProvider\getStaticSubItems
getStaticSubItems()
Definition:
class.ilWorkspaceGlobalScreenProvider.php:26
ILIAS\PersonalWorkspace\Provider
Definition:
class.ilWorkspaceGlobalScreenProvider.php:1
ILIAS\PersonalWorkspace\Provider\WorkspaceMainBarProvider
Class WorkspaceMainBarProvider.
Definition:
class.ilWorkspaceGlobalScreenProvider.php:11
ILIAS\PersonalWorkspace\Provider\WorkspaceMainBarProvider\getStaticTopItems
getStaticTopItems()
Definition:
class.ilWorkspaceGlobalScreenProvider.php:17
ILIAS\GlobalScreen\Scope\MainMenu\Provider\AbstractStaticMainMenuProvider\$dic
$dic
Definition:
AbstractStaticMainMenuProvider.php:37
Services
PersonalWorkspace
GlobalScreen
classes
class.ilWorkspaceGlobalScreenProvider.php
Generated on Thu Apr 3 2025 21:01:27 for ILIAS by
1.8.13 (using
Doxyfile
)