ILIAS
trunk Revision v11.0_alpha-2638-g80c1d007f79
◀ ilDoc Overview
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 Sun Aug 31 2025 23:04:08 for ILIAS by
1.8.13 (using
Doxyfile
)