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
Collection.php
Go to the documentation of this file.
1
<?php
namespace
ILIAS\GlobalScreen\ScreenContext\AdditionalData
;
2
3
use
LogicException
;
4
10
class
Collection
11
{
12
16
private
$values
= [];
17
18
22
public
function
getData
() : array
23
{
24
return
$this->values
;
25
}
26
27
32
public
function
add
(
string
$key, $value)
33
{
34
if
($this->
exists
($key)) {
35
throw
new
LogicException
(
"Key {$key} already exists."
);
36
}
37
$this->values[$key] = $value;
38
}
39
40
46
public
function
get
(
string
$key)
47
{
48
return
$this->values[$key];
49
}
50
51
58
public
function
is
(
string
$key, $expected_value) : bool
59
{
60
return
($this->
exists
($key) && $this->
get
($key) === $expected_value);
61
}
62
63
69
public
function
exists
(
string
$key) : bool
70
{
71
return
isset($this->values[$key]);
72
}
73
74
79
public
function
replace
(
string
$key, $value)
80
{
81
if
(!$this->
exists
($key)) {
82
throw
new
LogicException
(
"Key {$key} does not exists."
);
83
}
84
$this->values[$key] = $value;
85
}
86
}
LogicException
ILIAS\GlobalScreen\ScreenContext\AdditionalData\Collection\add
add(string $key, $value)
Definition:
Collection.php:32
ILIAS\GlobalScreen\ScreenContext\AdditionalData\Collection\$values
$values
Definition:
Collection.php:16
ILIAS\GlobalScreen\ScreenContext\AdditionalData\Collection\is
is(string $key, $expected_value)
Definition:
Collection.php:58
ILIAS\GlobalScreen\ScreenContext\AdditionalData\Collection\exists
exists(string $key)
Definition:
Collection.php:69
ILIAS\GlobalScreen\ScreenContext\AdditionalData\Collection
Class Collection.
Definition:
Collection.php:10
ILIAS\GlobalScreen\ScreenContext\AdditionalData\Collection\replace
replace(string $key, $value)
Definition:
Collection.php:79
ILIAS\GlobalScreen\ScreenContext\AdditionalData
Definition:
Collection.php:1
ILIAS\GlobalScreen\ScreenContext\AdditionalData\Collection\getData
getData()
Definition:
Collection.php:22
src
GlobalScreen
ScreenContext
AdditionalData
Collection.php
Generated on Wed Apr 2 2025 20:01:27 for ILIAS by
1.8.13 (using
Doxyfile
)