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
AbstractCollection.php
Go to the documentation of this file.
1
<?php
namespace
ILIAS\GlobalScreen\Scope\Layout\MetaContent\Media
;
2
3
use
Generator
;
4
5
/******************************************************************************
6
*
7
* This file is part of ILIAS, a powerful learning management system.
8
*
9
* ILIAS is licensed with the GPL-3.0, you should have received a copy
10
* of said license along with the source code.
11
*
12
* If this is not the case or you just want to try ILIAS, you'll find
13
* us at:
14
* https://www.ilias.de
15
* https://github.com/ILIAS-eLearning
16
*
17
*****************************************************************************/
23
abstract
class
AbstractCollection
24
{
25
protected
$resource_version
=
''
;
26
30
protected
$items
= [];
31
35
public
function
__construct
(
string
$resource_version
)
36
{
37
$this->resource_version =
$resource_version
;
38
}
39
40
public
function
clear
()
41
{
42
$this->items = [];
43
}
44
45
49
public
function
getItems
() :
Generator
50
{
51
yield from
$this->items
;
52
}
53
57
public
function
getItemsInOrderOfDelivery
() : array
58
{
59
return
$this->items
;
60
}
61
62
68
protected
function
stripPath
(
string
$path) : string
69
{
70
if
(strpos($path,
'?'
) !==
false
) {
71
return
parse_url($path, PHP_URL_PATH);
72
}
73
74
return
$path;
75
}
76
}
ILIAS\GlobalScreen\Scope\Layout\MetaContent\Media\AbstractCollection\$items
$items
Definition:
AbstractCollection.php:30
ILIAS\GlobalScreen\Scope\Layout\MetaContent\Media\AbstractCollection
Class Js.
Definition:
AbstractCollection.php:23
ILIAS\GlobalScreen\Scope\Layout\MetaContent\Media\AbstractCollection\stripPath
stripPath(string $path)
Definition:
AbstractCollection.php:68
ILIAS\GlobalScreen\Scope\Layout\MetaContent\Media\AbstractCollection\getItems
getItems()
Definition:
AbstractCollection.php:49
Generator
ILIAS\GlobalScreen\Scope\Layout\MetaContent\Media\AbstractCollection\clear
clear()
Definition:
AbstractCollection.php:40
ILIAS\GlobalScreen\Scope\Layout\MetaContent\Media\AbstractCollection\$resource_version
$resource_version
Definition:
AbstractCollection.php:25
ILIAS\GlobalScreen\Scope\Layout\MetaContent\Media
Definition:
AbstractCollection.php:1
ILIAS\GlobalScreen\Scope\Layout\MetaContent\Media\AbstractCollection\__construct
__construct(string $resource_version)
Definition:
AbstractCollection.php:35
ILIAS\GlobalScreen\Scope\Layout\MetaContent\Media\AbstractCollection\getItemsInOrderOfDelivery
getItemsInOrderOfDelivery()
Definition:
AbstractCollection.php:57
src
GlobalScreen
Scope
Layout
MetaContent
Media
AbstractCollection.php
Generated on Wed Apr 2 2025 20:01:26 for ILIAS by
1.8.13 (using
Doxyfile
)