ILIAS
release_6 Revision v6.24-5-g0c8bfefb3b8
◀ 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
s
t
w
+
Functions
_
a
b
c
f
g
h
i
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
CalendarMainBarProvider.php
Go to the documentation of this file.
1
<?php
namespace
ILIAS\Calendar\Provider
;
2
3
use
ilCalendarSettings
;
4
use
ILIAS\GlobalScreen\Scope\MainMenu\Provider\AbstractStaticMainMenuProvider
;
5
use
ILIAS\MainMenu\Provider\StandardTopItemsProvider
;
6
12
class
CalendarMainBarProvider
extends
AbstractStaticMainMenuProvider
13
{
14
18
public
function
getStaticTopItems
() : array
19
{
20
return
[];
21
}
22
23
27
public
function
getStaticSubItems
() : array
28
{
29
$title = $this->dic->language()->txt(
"mm_calendar"
);
30
$icon = $this->dic->ui()->factory()->symbol()->icon()->standard(
"cals"
, $title)->withIsOutlined(
true
);
31
32
return
[
33
$this->mainmenu->link($this->
if
->identifier(
'mm_pd_cal'
))
34
->withTitle($title)
35
->withAction(
"ilias.php?baseClass=ilDashboardGUI&cmd=jumpToCalendar"
)
36
->withParent(
StandardTopItemsProvider::getInstance
()->getPersonalWorkspaceIdentification())
37
->withPosition(30)
38
->withSymbol($icon)
39
->withNonAvailableReason($this->dic->ui()->factory()->legacy(
"{$this->dic->language()->txt('component_not_active')}"
))
40
->withAvailableCallable(
41
function
() {
42
$settings =
ilCalendarSettings::_getInstance
();
43
44
return
(
bool
) ($settings->isEnabled());
45
}
46
),
47
];
48
}
49
}
ilCalendarSettings\_getInstance
static _getInstance()
get singleton instance
Definition:
class.ilCalendarSettings.php:116
StandardTopItemsProvider
ILIAS\Calendar\Provider\CalendarMainBarProvider\getStaticSubItems
getStaticSubItems()
Definition:
CalendarMainBarProvider.php:27
ILIAS\Calendar\Provider
Definition:
CalendarMainBarProvider.php:1
ILIAS\GlobalScreen\Scope\MainMenu\Provider\AbstractStaticMainMenuProvider
Interface StaticMainMenuProvider.
Definition:
AbstractStaticMainMenuProvider.php:14
AbstractStaticMainMenuProvider
ILIAS\Calendar\Provider\CalendarMainBarProvider
Class CalendarMainBarProvider.
Definition:
CalendarMainBarProvider.php:12
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:55
ilCalendarSettings
ILIAS\Calendar\Provider\CalendarMainBarProvider\getStaticTopItems
getStaticTopItems()
Definition:
CalendarMainBarProvider.php:18
Services
Calendar
classes
Provider
CalendarMainBarProvider.php
Generated on Sat Apr 5 2025 20:01:18 for ILIAS by
1.8.13 (using
Doxyfile
)