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
MetaBarItemFactory.php
Go to the documentation of this file.
1
<?php
2
3
declare(strict_types=1);
20
namespace
ILIAS\GlobalScreen\Scope\MetaBar\Factory
;
21
22
use
ILIAS\GlobalScreen\Identification\IdentificationInterface
;
23
29
class
MetaBarItemFactory
30
{
35
public
function
topParentItem
(
IdentificationInterface
$identification):
TopParentItem
36
{
37
return
new
TopParentItem
($identification);
38
}
39
44
public
function
topLegacyItem
(
IdentificationInterface
$identification):
TopLegacyItem
45
{
46
return
new
TopLegacyItem
($identification);
47
}
48
53
public
function
linkItem
(
IdentificationInterface
$identification):
LinkItem
54
{
55
return
new
LinkItem
($identification);
56
}
57
62
public
function
topLinkItem
(
IdentificationInterface
$identification):
TopLinkItem
63
{
64
return
new
TopLinkItem
($identification);
65
}
66
71
public
function
notificationCenter
(
IdentificationInterface
$identification):
NotificationCenter
72
{
73
static
$created
;
74
if
(
$created
===
true
) {
75
// I currently disabled this since we have unresolved problems in https://mantis.ilias.de/view.php?id=26374
76
// throw new \LogicException("only one NotificationCenter can exist");
77
}
78
$created
=
true
;
79
80
return
new
NotificationCenter
($identification);
81
}
82
}
ILIAS\GlobalScreen\Scope\MetaBar\Factory\MetaBarItemFactory
Class MetaBarItemFactory This factory provides you all available types for MainMenu GlobalScreen Item...
Definition:
MetaBarItemFactory.php:29
ILIAS\GlobalScreen\Scope\MetaBar\Factory\MetaBarItemFactory\topLinkItem
topLinkItem(IdentificationInterface $identification)
Definition:
MetaBarItemFactory.php:62
ILIAS\GlobalScreen\Identification\IdentificationInterface
Interface IdentificationInterface.
Definition:
IdentificationInterface.php:29
ILIAS\GlobalScreen\Scope\MetaBar\Factory\TopLinkItem
Class TopLinkItem.
Definition:
TopLinkItem.php:32
ILIAS\GlobalScreen\Scope\MetaBar\Factory\NotificationCenter
Class NotificationCenter.
Definition:
NotificationCenter.php:32
ILIAS\GlobalScreen\Scope\MetaBar\Factory
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
AbstractBaseItem.php:20
ILIAS\GlobalScreen\Scope\MetaBar\Factory\TopLegacyItem
Class TopLegacyItem.
Definition:
TopLegacyItem.php:32
ILIAS\GlobalScreen\Scope\MetaBar\Factory\MetaBarItemFactory\notificationCenter
notificationCenter(IdentificationInterface $identification)
Definition:
MetaBarItemFactory.php:71
IdentificationInterface
ILIAS\GlobalScreen\Scope\MetaBar\Factory\MetaBarItemFactory\topLegacyItem
topLegacyItem(IdentificationInterface $identification)
Definition:
MetaBarItemFactory.php:44
ILIAS\GlobalScreen\Scope\MetaBar\Factory\TopParentItem
Class BaseItem.
Definition:
TopParentItem.php:31
ILIAS\GlobalScreen\Scope\MetaBar\Factory\MetaBarItemFactory\linkItem
linkItem(IdentificationInterface $identification)
Definition:
MetaBarItemFactory.php:53
ILIAS\GlobalScreen\Scope\MetaBar\Factory\MetaBarItemFactory\topParentItem
topParentItem(IdentificationInterface $identification)
Definition:
MetaBarItemFactory.php:35
ILIAS\GlobalScreen\Scope\MetaBar\Factory\LinkItem
Class LinkItem.
Definition:
LinkItem.php:32
ILIAS\LTI\ToolProvider\$created
int $created
Timestamp for when the object was created.
Definition:
System.php:151
src
GlobalScreen
Scope
MetaBar
Factory
MetaBarItemFactory.php
Generated on Fri Apr 4 2025 22:03:12 for ILIAS by
1.8.13 (using
Doxyfile
)