ILIAS
release_8 Revision v8.23
◀ ilDoc Overview
MetaDatum.php
Go to the documentation of this file.
1
<?php
2
3
declare(strict_types=1);
20
namespace
ILIAS\GlobalScreen\Scope\Layout\MetaContent\MetaData
;
21
27
class
MetaDatum
28
{
29
protected
string
$key
;
30
protected
string
$value
;
31
32
public
function
__construct
(
string
$key,
string
$value)
33
{
34
$this->key =
$key
;
35
$this->value =
$value
;
36
}
37
38
public
function
getKey
(): string
39
{
40
return
$this->key
;
41
}
42
43
public
function
getValue
(): string
44
{
45
return
$this->value
;
46
}
47
}
ILIAS\GlobalScreen\Scope\Layout\MetaContent\MetaData\MetaDatum\__construct
__construct(string $key, string $value)
Definition:
MetaDatum.php:32
ILIAS\GlobalScreen\Scope\Layout\MetaContent\MetaData\MetaDatum\$key
string $key
Definition:
MetaDatum.php:29
ILIAS\GlobalScreen\Scope\Layout\MetaContent\MetaData\MetaDatum\getKey
getKey()
Definition:
MetaDatum.php:38
ILIAS\GlobalScreen\Scope\Layout\MetaContent\MetaData\MetaDatum\$value
string $value
Definition:
MetaDatum.php:30
ILIAS\GlobalScreen\Scope\Layout\MetaContent\MetaData
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
MetaDataCollection.php:21
ILIAS\GlobalScreen\Scope\Layout\MetaContent\MetaData\MetaDatum
Class MetaDataCollection.
Definition:
MetaDatum.php:27
ILIAS\GlobalScreen\Scope\Layout\MetaContent\MetaData\MetaDatum\getValue
getValue()
Definition:
MetaDatum.php:43
src
GlobalScreen
Scope
Layout
MetaContent
MetaData
MetaDatum.php
Generated on Wed Sep 3 2025 22:02:54 for ILIAS by
1.8.13 (using
Doxyfile
)