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
ContextCollection.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
namespace
ILIAS\GlobalScreen\ScreenContext\Stack
;
21
22
use
ILIAS\GlobalScreen\ScreenContext\ContextRepository
;
23
use
ILIAS\GlobalScreen\ScreenContext\ScreenContext
;
24
29
class
ContextCollection
30
{
34
protected
$repo
;
38
protected
$stack
= [];
39
44
public
function
__construct
(
ContextRepository
$context_repository)
45
{
46
$this->repo = $context_repository;
47
}
48
52
public
function
push
(
ScreenContext
$context
) : void
53
{
54
$this->stack[] =
$context
;
55
}
56
60
public
function
getLast
() : ?
ScreenContext
61
{
62
$last = end($this->stack);
63
if
($last) {
64
return
$last;
65
}
66
return
null;
67
}
68
72
public
function
getStack
() : array
73
{
74
return
$this->stack
;
75
}
76
80
public
function
getStackAsArray
() : array
81
{
82
$return = [];
83
foreach
($this->stack as $item) {
84
$return[] = $item->getUniqueContextIdentifier();
85
}
86
87
return
$return;
88
}
89
94
public
function
hasMatch
(
ContextCollection
$other_collection) : bool
95
{
96
$mapper =
function
(
ScreenContext
$c
) :
string
{
97
return
$c
->getUniqueContextIdentifier();
98
};
99
$mine = array_map($mapper, $this->
getStack
());
100
$theirs = array_map($mapper, $other_collection->
getStack
());
101
102
return
(count(array_intersect($mine, $theirs)) > 0);
103
}
104
105
public
function
main
() : self
106
{
107
$context
= $this->repo->main();
108
$this->
push
(
$context
);
109
110
return
$this
;
111
}
112
113
public
function
desktop
() : self
114
{
115
$this->
push
($this->repo->desktop());
116
117
return
$this
;
118
}
119
120
public
function
repository
() : self
121
{
122
$this->
push
($this->repo->repository());
123
124
return
$this
;
125
}
126
127
public
function
administration
() : self
128
{
129
$this->
push
($this->repo->administration());
130
131
return
$this
;
132
}
133
134
public
function
internal
() :
self
135
{
136
$this->
push
($this->repo->internal());
137
138
return
$this
;
139
}
140
141
public
function
external
() : self
142
{
143
$this->
push
($this->repo->external());
144
145
return
$this
;
146
}
147
148
public
function
lti
() : self
149
{
150
$this->
push
($this->repo->lti());
151
return
$this
;
152
}
153
}
ILIAS\GlobalScreen\ScreenContext\Stack\ContextCollection\lti
lti()
Definition:
ContextCollection.php:148
ILIAS\GlobalScreen\ScreenContext\Stack\ContextCollection\$this
function return $this
Definition:
ContextCollection.php:136
$context
$context
Definition:
webdav.php:26
$c
$c
Definition:
cli.php:37
ILIAS\GlobalScreen\ScreenContext\Stack\ContextCollection\administration
administration()
Definition:
ContextCollection.php:127
ILIAS\GlobalScreen\ScreenContext\Stack\ContextCollection\getStack
getStack()
Definition:
ContextCollection.php:72
ILIAS\GlobalScreen\ScreenContext\Stack\ContextCollection\desktop
desktop()
Definition:
ContextCollection.php:113
ILIAS\GlobalScreen\ScreenContext\Stack\ContextCollection\main
main()
Definition:
ContextCollection.php:105
ScreenContext
ILIAS\GlobalScreen\ScreenContext\Stack\ContextCollection\external
external()
Definition:
ContextCollection.php:141
ILIAS\GlobalScreen\ScreenContext\ContextRepository
Class ContextRepository.
Definition:
ContextRepository.php:32
ILIAS\GlobalScreen\ScreenContext\Stack\ContextCollection\$stack
$stack
Definition:
ContextCollection.php:38
ILIAS\GlobalScreen\ScreenContext\Stack\ContextCollection\push
push(ScreenContext $context)
Definition:
ContextCollection.php:52
ILIAS\GlobalScreen\ScreenContext\Stack\ContextCollection\$repo
$repo
Definition:
ContextCollection.php:34
ILIAS\GlobalScreen\ScreenContext\Stack
Definition:
CalledContexts.php:21
ContextRepository
ILIAS\GlobalScreen\ScreenContext\Stack\ContextCollection\repository
repository()
Definition:
ContextCollection.php:120
ILIAS\GlobalScreen\ScreenContext\Stack\ContextCollection\getLast
getLast()
Definition:
ContextCollection.php:60
ILIAS\GlobalScreen\ScreenContext\Stack\ContextCollection\getStackAsArray
getStackAsArray()
Definition:
ContextCollection.php:80
ILIAS\GlobalScreen\ScreenContext\Stack\ContextCollection\hasMatch
hasMatch(ContextCollection $other_collection)
Definition:
ContextCollection.php:94
ILIAS\GlobalScreen\ScreenContext\Stack\ContextCollection
Definition:
ContextCollection.php:29
ILIAS\GlobalScreen\ScreenContext\ScreenContext
Interface ScreenContext.
Definition:
ScreenContext.php:29
ILIAS\GlobalScreen\ScreenContext\Stack\ContextCollection\__construct
__construct(ContextRepository $context_repository)
ContextCollection constructor.
Definition:
ContextCollection.php:44
src
GlobalScreen
ScreenContext
Stack
ContextCollection.php
Generated on Thu Apr 3 2025 21:01:36 for ILIAS by
1.8.13 (using
Doxyfile
)