ILIAS
trunk Revision v11.0_alpha-3011-gc6b235a2e85
◀ 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\InterruptiveItem
Definition:
InterruptiveItem.php:27
ILIAS\UI\Implementation\Component\Modal\InterruptiveItem\InterruptiveItem\$id
string $id
Definition:
InterruptiveItem.php:30
ILIAS\UI\Implementation\Component\Modal\InterruptiveItem\KeyValue
Definition:
KeyValue.php:26
ILIAS\UI\Implementation\Component\Modal\InterruptiveItem\KeyValue\getKey
getKey()
Get the key of the pair.
Definition:
KeyValue.php:41
ILIAS\UI\Implementation\Component\Modal\InterruptiveItem\KeyValue\$key
string $key
Definition:
KeyValue.php:27
ILIAS\UI\Implementation\Component\Modal\InterruptiveItem\KeyValue\$value
string $value
Definition:
KeyValue.php:28
ILIAS\UI\Implementation\Component\Modal\InterruptiveItem\KeyValue\getValue
getValue()
Get the value of the pair.
Definition:
KeyValue.php:46
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:29
ILIAS\GlobalScreen\Provider\__construct
__construct(Container $dic, ilPlugin $plugin)
@inheritDoc
Definition:
PluginProviderHelper.php:38
ILIAS\UI\Implementation\Component\Modal\InterruptiveItem
Definition:
Factory.php:21
components
ILIAS
UI
src
Implementation
Component
Modal
InterruptiveItem
KeyValue.php
Generated on Sat Oct 18 2025 23:04:38 for ILIAS by
1.9.4 (using
Doxyfile
)