ILIAS
release_8 Revision v8.19
◀ 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
n
o
p
r
s
t
u
v
w
x
+
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
j
l
m
p
s
t
u
+
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
r
s
t
u
v
w
x
z
+
Functions
_
a
b
c
d
e
g
h
i
m
n
p
r
s
t
u
v
x
+
Variables
$
a
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
MetaDataCollection.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\GlobalScreen\Scope\Layout\MetaContent\MetaData
;
22
23
use
Iterator
;
24
29
class
MetaDataCollection
30
{
34
protected
array
$items
= [];
35
36
public
function
add
(
MetaDatum
$meta_datum): void
37
{
38
$this->items[] = $meta_datum;
39
}
40
41
public
function
clear
(): void
42
{
43
$this->items = [];
44
}
45
49
public
function
getItems
():
Iterator
50
{
51
yield from
$this->items
;
52
}
53
57
public
function
getItemsAsKeyValuePairs
(): array
58
{
59
$key_value_pairs = [];
60
array_walk($this->items,
function
(
MetaDatum
$d
) use (&$key_value_pairs):
void
{
61
$key_value_pairs[$d->
getKey
()] = $d->
getValue
();
62
});
63
return
$key_value_pairs;
64
}
65
}
ILIAS\GlobalScreen\Scope\Layout\MetaContent\MetaData\MetaDataCollection\clear
clear()
Definition:
MetaDataCollection.php:41
ILIAS\GlobalScreen\Scope\Layout\MetaContent\MetaData\MetaDataCollection\getItemsAsKeyValuePairs
getItemsAsKeyValuePairs()
Definition:
MetaDataCollection.php:57
ILIAS\GlobalScreen\Scope\Layout\MetaContent\MetaData\MetaDatum\getKey
getKey()
Definition:
MetaDatum.php:38
ILIAS\GlobalScreen\Scope\Layout\MetaContent\MetaData\MetaDataCollection\$items
array $items
Definition:
MetaDataCollection.php:34
ILIAS\GlobalScreen\Scope\Layout\MetaContent\MetaData\MetaDataCollection
Class MetaDataCollection.
Definition:
MetaDataCollection.php:29
ILIAS\GlobalScreen\Scope\Layout\MetaContent\MetaData\MetaDataCollection\getItems
getItems()
Definition:
MetaDataCollection.php:49
ILIAS\GlobalScreen\Scope\Layout\MetaContent\MetaData\MetaDataCollection\add
add(MetaDatum $meta_datum)
Definition:
MetaDataCollection.php:36
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
Iterator
ILIAS\GlobalScreen\Scope\Layout\MetaContent\MetaData\MetaDatum\getValue
getValue()
Definition:
MetaDatum.php:43
$d
for($i=6; $i< 13; $i++) for($i=1; $i< 13; $i++) $d
Definition:
date.php:296
src
GlobalScreen
Scope
Layout
MetaContent
MetaData
MetaDataCollection.php
Generated on Fri Apr 4 2025 22:03:12 for ILIAS by
1.8.13 (using
Doxyfile
)