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
ContactMainBarProvider.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\Contact\Provider
;
22
23
use
ilBuddySystem
;
24
use
ilContactGUI
;
25
use
ilDashboardGUI
;
26
use
ILIAS\GlobalScreen\Scope\MainMenu\Provider\AbstractStaticMainMenuProvider
;
27
use
ILIAS\MainMenu\Provider\StandardTopItemsProvider
;
28
use
ILIAS\UI\Component\Symbol\Icon\Standard
;
29
35
class
ContactMainBarProvider
extends
AbstractStaticMainMenuProvider
36
{
40
public
function
getStaticTopItems
(): array
41
{
42
return
[];
43
}
44
45
49
public
function
getStaticSubItems
(): array
50
{
51
$title = $this->dic->language()->txt(
"mm_contacts"
);
52
53
$icon = $this->dic->ui()->factory()
54
->symbol()
55
->icon()
56
->standard(
Standard::CADM
,
'contacts'
);
57
58
59
return
[
60
$this->mainmenu->link($this->
if
->identifier(
'mm_pd_contacts'
))
61
->withTitle($title)
62
->withAction($this->dic->ctrl()->getLinkTargetByClass([ilDashboardGUI::class, ilContactGUI::class]))
63
->withParent(
StandardTopItemsProvider::getInstance
()->getCommunicationIdentification())
64
->withPosition(20)
65
->withSymbol($icon)
66
->withNonAvailableReason($this->dic->ui()->factory()->legacy($this->dic->language()->txt(
'component_not_active'
)))
67
->withAvailableCallable(
68
static
function
():
bool
{
69
return
ilBuddySystem::getInstance
()->isEnabled();
70
}
71
),
72
];
73
}
74
}
ILIAS\Contact\Provider\ContactMainBarProvider
Class ContactMainBarProvider.
Definition:
ContactMainBarProvider.php:35
ilContactGUI
StandardTopItemsProvider
Standard
ilBuddySystem\getInstance
static getInstance()
Definition:
class.ilBuddySystem.php:41
ilDashboardGUI
ILIAS\Contact\Provider\ContactMainBarProvider\getStaticTopItems
getStaticTopItems()
Definition:
ContactMainBarProvider.php:40
ilBuddySystem
ILIAS\GlobalScreen\Scope\MainMenu\Provider\AbstractStaticMainMenuProvider
Interface StaticMainMenuProvider.
Definition:
AbstractStaticMainMenuProvider.php:32
AbstractStaticMainMenuProvider
if
if(!file_exists(getcwd() . '/ilias.ini.php'))
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
confirmReg.php:20
ILIAS\MainMenu\Provider\StandardTopItemsProvider\getInstance
static getInstance()
Definition:
StandardTopItemsProvider.php:61
ILIAS\Contact\Provider
Definition:
ContactMainBarProvider.php:21
ILIAS\UI\Component\Symbol\Icon\Standard\CADM
const CADM
Definition:
Standard.php:129
ILIAS\Contact\Provider\ContactMainBarProvider\getStaticSubItems
getStaticSubItems()
Definition:
ContactMainBarProvider.php:49
Services
Contact
classes
Provider
ContactMainBarProvider.php
Generated on Fri Apr 4 2025 22:02:12 for ILIAS by
1.8.13 (using
Doxyfile
)