ILIAS
trunk Revision v11.0_alpha-1713-gd8962da2f67
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
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
k
l
m
n
o
p
r
s
t
u
v
w
x
+
Variables
$
c
e
g
h
j
l
m
p
s
t
u
v
+
Enumerations
a
c
e
f
i
j
l
m
n
o
p
r
s
t
u
v
z
+
Enumerator
a
c
d
e
f
g
i
l
m
n
o
p
q
s
t
u
v
y
+
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
Ö
Enumerations
Enumerator
+
Files
File List
+
Globals
+
All
$
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
z
+
Functions
a
b
c
d
e
f
g
h
i
m
n
p
r
s
t
u
v
+
Variables
$
a
c
e
g
h
i
m
n
o
p
r
s
t
u
v
z
Enumerations
Enumerator
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Enumerations
Enumerator
Modules
Pages
KeyValue.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\UI\Implementation\Component\Modal\InterruptiveItem
;
22
23
use
ILIAS\UI\Component\Modal\InterruptiveItem\KeyValue
as KeyValueInterface;
24
25
class
KeyValue
extends
InterruptiveItem
implements KeyValueInterface
26
{
27
protected
string
$key
;
28
protected
string
$value
;
29
30
public
function
__construct
(
31
string
$id
,
32
string
$key,
33
string
$value
34
) {
35
parent::__construct
($id);
36
37
$this->key =
$key
;
38
$this->value =
$value
;
39
}
40
41
public
function
getKey
(): string
42
{
43
return
$this->key
;
44
}
45
46
public
function
getValue
(): string
47
{
48
return
$this->value
;
49
}
50
}
ILIAS\UI\Implementation\Component\Modal\InterruptiveItem\KeyValue
Definition:
KeyValue.php:25
ILIAS\UI\Implementation\Component\Modal\InterruptiveItem\InterruptiveItem
Definition:
InterruptiveItem.php:26
ILIAS\UI\Implementation\Component\Modal\InterruptiveItem\KeyValue\__construct
__construct(string $id, string $key, string $value)
Definition:
KeyValue.php:30
ILIAS\UI\Component\Modal\InterruptiveItem\KeyValue
Interface InterruptiveItem.
Definition:
KeyValue.php:28
ILIAS\UI\Implementation\Component\Modal\InterruptiveItem\KeyValue\$value
string $value
Definition:
KeyValue.php:28
ILIAS\UI\Implementation\Component\Modal\InterruptiveItem\KeyValue\getValue
getValue()
The value string that will be displayed behind the label of the node.
Definition:
KeyValue.php:46
ILIAS\UI\Implementation\Component\Modal\InterruptiveItem\KeyValue\$key
string $key
Definition:
KeyValue.php:27
ILIAS\UI\Implementation\Component\Modal\InterruptiveItem\KeyValue\getKey
getKey()
Definition:
KeyValue.php:41
ILIAS\GlobalScreen\Provider\__construct
__construct(Container $dic, ilPlugin $plugin)
Definition:
PluginProviderHelper.php:37
ILIAS\UI\Implementation\Component\Modal\InterruptiveItem\InterruptiveItem\$id
string $id
Definition:
InterruptiveItem.php:30
ILIAS\UI\Implementation\Component\Modal\InterruptiveItem
Definition:
Factory.php:21
components
ILIAS
UI
src
Implementation
Component
Modal
InterruptiveItem
KeyValue.php
Generated on Fri Apr 4 2025 23:04:21 for ILIAS by
1.8.13 (using
Doxyfile
)