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
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
array
$items
= [];
35
36
protected
string
$resource_version
;
37
41
public
function
__construct
(
string
$resource_version)
42
{
43
$this->resource_version =
$resource_version
;
44
}
45
46
public
function
clear
(): void
47
{
48
$this->items = [];
49
}
50
54
public
function
getItems
():
Iterator
55
{
56
yield from
$this->items
;
57
}
58
62
public
function
getItemsInOrderOfDelivery
(): array
63
{
64
return
$this->items
;
65
}
66
71
protected
function
stripPath
(
string
$path
): string
72
{
73
if
(strpos($path,
'?'
) !==
false
) {
74
return
parse_url($path, PHP_URL_PATH);
75
}
76
77
return
$path
;
78
}
79
}
ILIAS\GlobalScreen\Scope\Layout\MetaContent\Media\AbstractCollection\$items
array $items
Definition:
AbstractCollection.php:34
ILIAS\GlobalScreen\Scope\Layout\MetaContent\Media\AbstractCollection\$resource_version
string $resource_version
Definition:
AbstractCollection.php:36
ILIAS\GlobalScreen\Scope\Layout\MetaContent\Media\AbstractCollection
Class Js.
Definition:
AbstractCollection.php:29
$path
$path
Definition:
ltiservices.php:32
ILIAS\GlobalScreen\Scope\Layout\MetaContent\Media\AbstractCollection\stripPath
stripPath(string $path)
Definition:
AbstractCollection.php:71
ILIAS\GlobalScreen\Scope\Layout\MetaContent\Media\AbstractCollection\getItems
getItems()
Definition:
AbstractCollection.php:54
ILIAS\GlobalScreen\Scope\Layout\MetaContent\Media\AbstractCollection\clear
clear()
Definition:
AbstractCollection.php:46
ILIAS\GlobalScreen\Scope\Layout\MetaContent\Media
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
AbstractCollection.php:21
Iterator
ILIAS\GlobalScreen\Scope\Layout\MetaContent\Media\AbstractCollection\__construct
__construct(string $resource_version)
Definition:
AbstractCollection.php:41
ILIAS\GlobalScreen\Scope\Layout\MetaContent\Media\AbstractCollection\getItemsInOrderOfDelivery
getItemsInOrderOfDelivery()
Definition:
AbstractCollection.php:62
src
GlobalScreen
Scope
Layout
MetaContent
Media
AbstractCollection.php
Generated on Thu Apr 3 2025 22:02:44 for ILIAS by
1.8.13 (using
Doxyfile
)