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
AbstractStaticMainMenuProvider.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
namespace
ILIAS\GlobalScreen\Scope\MainMenu\Provider
;
21
22
use
ILIAS\DI\Container
;
23
use
ILIAS\GlobalScreen\Identification\IdentificationProviderInterface
;
24
use
ILIAS\GlobalScreen\Provider\AbstractProvider
;
25
use
ILIAS\GlobalScreen\Scope\MainMenu\Collector\Information\TypeInformationCollection
;
26
use
ILIAS\GlobalScreen\Scope\MainMenu\Factory\MainMenuItemFactory
;
27
32
abstract
class
AbstractStaticMainMenuProvider
extends
AbstractProvider
implements
StaticMainMenuProvider
33
{
37
protected
$dic
;
41
protected
$if
;
45
protected
$mainmenu
;
46
50
public
function
__construct
(
Container
$dic
)
51
{
52
parent::__construct
($dic);
53
$this->mainmenu = $this->
globalScreen
()->mainBar();
54
$this->
if
= $this->
globalScreen
()->identification()->core($this);
55
}
56
60
public
function
getAllIdentifications
() : array
61
{
62
$ids = [];
63
foreach
($this->
getStaticTopItems
() as $slate) {
64
$ids[] = $slate->getProviderIdentification();
65
}
66
foreach
($this->
getStaticSubItems
() as $entry) {
67
$ids[] = $entry->getProviderIdentification();
68
}
69
70
return
$ids;
71
}
72
76
public
function
provideTypeInformation
() :
TypeInformationCollection
77
{
78
return
new
TypeInformationCollection
();
79
}
80
}
IdentificationProviderInterface
MainMenuItemFactory
ILIAS\GlobalScreen\Provider\AbstractProvider\globalScreen
globalScreen()
Definition:
AbstractProvider.php:51
AbstractProvider
ILIAS\GlobalScreen\Scope\MainMenu\Provider\StaticMainMenuProvider\getStaticSubItems
getStaticSubItems()
ILIAS\GlobalScreen\Scope\MainMenu\Provider\AbstractStaticMainMenuProvider\$mainmenu
$mainmenu
Definition:
AbstractStaticMainMenuProvider.php:45
ILIAS\GlobalScreen\Scope\MainMenu\Provider\AbstractStaticMainMenuProvider
Interface StaticMainMenuProvider.
Definition:
AbstractStaticMainMenuProvider.php:32
ILIAS\DI\Container
Customizing of pimple-DIC for ILIAS.
Definition:
Container.php:18
TypeInformationCollection
Container
ILIAS\GlobalScreen\Scope\MainMenu\Collector\Information\TypeInformationCollection
Class TypeInformationCollection.
Definition:
TypeInformationCollection.php:26
ILIAS\GlobalScreen\Scope\MainMenu\Provider\AbstractStaticMainMenuProvider\getAllIdentifications
getAllIdentifications()
Definition:
AbstractStaticMainMenuProvider.php:60
ILIAS\GlobalScreen\Provider\__construct
__construct(Container $dic, ilPlugin $plugin)
Definition:
PluginProviderHelper.php:40
ILIAS\GlobalScreen\Scope\MainMenu\Provider\AbstractStaticMainMenuProvider\$dic
$dic
Definition:
AbstractStaticMainMenuProvider.php:37
ILIAS\GlobalScreen\Scope\MainMenu\Provider\AbstractStaticMainMenuProvider\__construct
__construct(Container $dic)
Definition:
AbstractStaticMainMenuProvider.php:50
ILIAS\GlobalScreen\Scope\MainMenu\Provider\StaticMainMenuProvider
Interface StaticMainMenuProvider.
Definition:
StaticMainMenuProvider.php:31
ILIAS\GlobalScreen\Scope\MainMenu\Provider
Definition:
AbstractStaticMainMenuPluginProvider.php:20
ILIAS\GlobalScreen\Provider\AbstractProvider
Definition:
AbstractProvider.php:29
ILIAS\GlobalScreen\Scope\MainMenu\Provider\StaticMainMenuProvider\getStaticTopItems
getStaticTopItems()
ILIAS\GlobalScreen\Scope\MainMenu\Provider\AbstractStaticMainMenuProvider\provideTypeInformation
provideTypeInformation()
Definition:
AbstractStaticMainMenuProvider.php:76
ILIAS\GlobalScreen\Scope\MainMenu\Provider\AbstractStaticMainMenuProvider\$if
$if
Definition:
AbstractStaticMainMenuProvider.php:41
src
GlobalScreen
Scope
MainMenu
Provider
AbstractStaticMainMenuProvider.php
Generated on Wed Apr 2 2025 21:01:42 for ILIAS by
1.8.13 (using
Doxyfile
)