ILIAS
release_7 Revision v7.30-3-g800a261c036
◀ 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
r
s
t
w
+
Functions
_
a
b
c
f
g
h
i
r
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
AbstractCollection.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\GlobalScreen\Scope\Layout\MetaContent\Media
;
22
23
use
Iterator
;
24
29
abstract
class
AbstractCollection
30
{
34
protected
$items
= [];
35
39
protected
$resource_version
;
40
44
public
function
__construct
(
string
$resource_version
)
45
{
46
$this->resource_version =
$resource_version
;
47
}
48
49
public
function
clear
() : void
50
{
51
$this->items = [];
52
}
53
57
public
function
getItems
() :
Iterator
58
{
59
yield from
$this->items
;
60
}
61
65
public
function
getItemsInOrderOfDelivery
() : array
66
{
67
return
$this->items
;
68
}
69
74
protected
function
stripPath
(
string
$path) : string
75
{
76
if
(strpos($path,
'?'
) !==
false
) {
77
return
parse_url($path, PHP_URL_PATH);
78
}
79
80
return
$path;
81
}
82
}
ILIAS\GlobalScreen\Scope\Layout\MetaContent\Media\AbstractCollection\$items
$items
Definition:
AbstractCollection.php:34
ILIAS\GlobalScreen\Scope\Layout\MetaContent\Media\AbstractCollection
Class Js.
Definition:
AbstractCollection.php:29
ILIAS\GlobalScreen\Scope\Layout\MetaContent\Media\AbstractCollection\stripPath
stripPath(string $path)
Definition:
AbstractCollection.php:74
ILIAS\GlobalScreen\Scope\Layout\MetaContent\Media\AbstractCollection\getItems
getItems()
Definition:
AbstractCollection.php:57
ILIAS\GlobalScreen\Scope\Layout\MetaContent\Media\AbstractCollection\clear
clear()
Definition:
AbstractCollection.php:49
ILIAS\GlobalScreen\Scope\Layout\MetaContent\Media\AbstractCollection\$resource_version
$resource_version
Definition:
AbstractCollection.php:39
ILIAS\GlobalScreen\Scope\Layout\MetaContent\Media
Definition:
AbstractCollection.php:21
Iterator
ILIAS\GlobalScreen\Scope\Layout\MetaContent\Media\AbstractCollection\__construct
__construct(string $resource_version)
Definition:
AbstractCollection.php:44
ILIAS\GlobalScreen\Scope\Layout\MetaContent\Media\AbstractCollection\getItemsInOrderOfDelivery
getItemsInOrderOfDelivery()
Definition:
AbstractCollection.php:65
src
GlobalScreen
Scope
Layout
MetaContent
Media
AbstractCollection.php
Generated on Wed Apr 2 2025 21:01:42 for ILIAS by
1.8.13 (using
Doxyfile
)