ILIAS
release_6 Revision v6.24-5-g0c8bfefb3b8
◀ 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
p
s
t
w
+
Functions
_
a
b
c
f
g
h
i
s
t
w
+
Variables
$
c
d
e
f
g
h
j
l
m
p
s
t
+
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
q
r
s
t
u
v
w
x
z
+
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
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
MetaDataCollection.php
Go to the documentation of this file.
1
<?php
namespace
ILIAS\GlobalScreen\Scope\Layout\MetaContent\MetaData
;
2
3
use
ILIAS\GlobalScreen\Scope\Layout\MetaContent\Media\Js
;
4
use
ILIAS\GlobalScreen\Scope\Layout\MetaContent\Media\Css
;
5
use
ILIAS\GlobalScreen\Scope\Layout\MetaContent\Media\InlineCss
;
6
use
ILIAS\GlobalScreen\Scope\Layout\MetaContent\Media\OnLoadCode
;
7
13
class
MetaDataCollection
14
{
18
protected
$items
= [];
19
20
public
function
add
(
MetaDatum
$meta_datum) : void
21
{
22
$this->items[] = $meta_datum;
23
}
24
25
public
function
clear
()
26
{
27
$this->items = [];
28
}
29
33
public
function
getItems
() : \
Iterator
34
{
35
yield from
$this->items
;
36
}
37
41
public
function
getItemsAsKeyValuePairs
() : array
42
{
43
$key_value_pairs = [];
44
array_walk($this->items,
function
(
MetaDatum
$d
) use (&$key_value_pairs) {
45
$key_value_pairs[$d->
getKey
()] = $d->
getValue
();
46
});
47
return
$key_value_pairs;
48
}
49
}
ILIAS\GlobalScreen\Scope\Layout\MetaContent\MetaData\MetaDataCollection\clear
clear()
Definition:
MetaDataCollection.php:25
ILIAS\GlobalScreen\Scope\Layout\MetaContent\MetaData\MetaDataCollection\getItemsAsKeyValuePairs
getItemsAsKeyValuePairs()
Definition:
MetaDataCollection.php:41
ILIAS\GlobalScreen\Scope\Layout\MetaContent\MetaData\MetaDataCollection\$items
$items
Definition:
MetaDataCollection.php:18
ILIAS\GlobalScreen\Scope\Layout\MetaContent\MetaData\MetaDatum\getKey
getKey()
Definition:
MetaDatum.php:25
ILIAS\GlobalScreen\Scope\Layout\MetaContent\MetaData\MetaDataCollection
Class MetaDataCollection.
Definition:
MetaDataCollection.php:13
Iterator
ILIAS\GlobalScreen\Scope\Layout\MetaContent\MetaData\MetaDataCollection\getItems
getItems()
Definition:
MetaDataCollection.php:33
ILIAS\GlobalScreen\Scope\Layout\MetaContent\MetaData\MetaDataCollection\add
add(MetaDatum $meta_datum)
Definition:
MetaDataCollection.php:20
ILIAS\GlobalScreen\Scope\Layout\MetaContent\MetaData
Definition:
MetaDataCollection.php:1
Js
ILIAS\GlobalScreen\Scope\Layout\MetaContent\MetaData\MetaDatum
Class MetaDataCollection.
Definition:
MetaDatum.php:8
Css
InlineCss
OnLoadCode
ILIAS\GlobalScreen\Scope\Layout\MetaContent\MetaData\MetaDatum\getValue
getValue()
Definition:
MetaDatum.php:30
$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 Thu Apr 3 2025 20:01:20 for ILIAS by
1.8.13 (using
Doxyfile
)