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
ContextServices.php
Go to the documentation of this file.
1
<?php
namespace
ILIAS\GlobalScreen\ScreenContext
;
2
3
use
ILIAS\GlobalScreen\ScreenContext\Stack\CalledContexts
;
4
use
ILIAS\GlobalScreen\ScreenContext\Stack\ContextCollection
;
5
11
class
ContextServices
12
{
13
17
private
$context_repository
;
21
private
$collection
;
22
23
27
public
function
__construct
()
28
{
29
$this->context_repository =
new
ContextRepository
();
30
$this->
collection
=
new
CalledContexts
($this->context_repository);
31
}
32
33
37
public
function
stack
() :
CalledContexts
38
{
39
return
$this->collection
;
40
}
41
42
46
public
function
current
() :
ScreenContext
47
{
48
return
$this->
collection
->current();
49
}
50
51
55
public
function
claim
() :
CalledContexts
56
{
57
return
$this->collection
;
58
}
59
60
64
public
function
collection
()
65
{
66
return
new
ContextCollection
($this->context_repository);
67
}
68
69
73
public
function
availableContexts
() :
ContextRepository
74
{
75
return
$this->context_repository
;
76
}
77
}
ILIAS\GlobalScreen\ScreenContext\ContextServices
Class ContextServices.
Definition:
ContextServices.php:11
ILIAS\GlobalScreen\ScreenContext\ContextServices\$context_repository
$context_repository
Definition:
ContextServices.php:17
ILIAS\GlobalScreen\ScreenContext\ContextServices\__construct
__construct()
ContextServices constructor.
Definition:
ContextServices.php:27
ILIAS\GlobalScreen\ScreenContext\ContextServices\current
current()
Definition:
ContextServices.php:46
ILIAS\GlobalScreen\ScreenContext\ContextRepository
Class ContextRepository.
Definition:
ContextRepository.php:13
ILIAS\GlobalScreen\ScreenContext\ContextServices\stack
stack()
Definition:
ContextServices.php:37
ILIAS\GlobalScreen\ScreenContext
CalledContexts
ILIAS\GlobalScreen\ScreenContext\ContextServices\claim
claim()
Definition:
ContextServices.php:55
ContextCollection
ILIAS\GlobalScreen\ScreenContext\ContextServices\collection
collection()
Definition:
ContextServices.php:64
ILIAS\GlobalScreen\ScreenContext\Stack\CalledContexts
Class CalledContexts.
Definition:
CalledContexts.php:10
ILIAS\GlobalScreen\ScreenContext\ContextServices\availableContexts
availableContexts()
Definition:
ContextServices.php:73
ILIAS\GlobalScreen\ScreenContext\Stack\ContextCollection
Definition:
ContextCollection.php:11
ILIAS\GlobalScreen\ScreenContext\ContextServices\$collection
$collection
Definition:
ContextServices.php:21
ILIAS\GlobalScreen\ScreenContext\ScreenContext
Interface ScreenContext.
Definition:
ScreenContext.php:11
src
GlobalScreen
ScreenContext
ContextServices.php
Generated on Sat Apr 5 2025 20:01:38 for ILIAS by
1.8.13 (using
Doxyfile
)