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
JsCollection.php
Go to the documentation of this file.
1
<?php
namespace
ILIAS\GlobalScreen\Scope\Layout\MetaContent\Media
;
2
3
/******************************************************************************
4
* This file is part of ILIAS, a powerful learning management system.
5
* ILIAS is licensed with the GPL-3.0, you should have received a copy
6
* of said license along with the source code.
7
* If this is not the case or you just want to try ILIAS, you'll find
8
* us at:
9
* https://www.ilias.de
10
* https://github.com/ILIAS-eLearning
11
*****************************************************************************/
12
18
class
JsCollection
extends
AbstractCollection
19
{
20
24
protected
$path_storage
= [];
25
26
30
public
function
addItem
(
Js
$item)
31
{
32
$basename = $this->
stripPath
($item->
getContent
());
33
if
(!array_key_exists($basename, $this->items)) {
34
$this->
storeItem
($item);
35
}
else
{
36
$existing = $this->items[$basename];
37
if
(($existing instanceof
Js
) && $existing->getBatch() > $item->
getBatch
()) {
38
$this->
storeItem
($item);
39
}
40
}
41
}
42
43
44
private
function
storeItem
(
45
js $item
46
) {
47
$strip_path = $this->
stripPath
($item->getContent());
48
$this->items[$strip_path] = $item;
49
$this->path_storage[$strip_path] = $item->getBatch();
50
}
51
52
56
public
function
getItemsInOrderOfDelivery
() : array
57
{
58
$ordered = [];
59
foreach
($this->
getItems
() as
$js
) {
60
$ordered[
'pos_'
. (string) $js->getBatch()][] =
$js
;
61
}
62
ksort($ordered);
63
$ordered_all = [];
64
foreach
($ordered as $item) {
65
foreach
($item as $js) {
66
$ordered_all[] =
$js
;
67
}
68
}
69
70
return
$ordered_all;
71
}
72
}
ILIAS\GlobalScreen\Scope\Layout\MetaContent\Media\JsCollection\addItem
addItem(Js $item)
Definition:
JsCollection.php:30
ILIAS\GlobalScreen\Scope\Layout\MetaContent\Media\AbstractMediaWithPath\getContent
getContent()
Definition:
AbstractMediaWithPath.php:9
ILIAS\GlobalScreen\Scope\Layout\MetaContent\Media\AbstractCollection
Class Js.
Definition:
AbstractCollection.php:23
ILIAS\GlobalScreen\Scope\Layout\MetaContent\Media\Js
Class Js.
Definition:
Js.php:18
ILIAS\GlobalScreen\Scope\Layout\MetaContent\Media\JsCollection
Definition:
JsCollection.php:18
ILIAS\GlobalScreen\Scope\Layout\MetaContent\Media\JsCollection\$path_storage
$path_storage
Definition:
JsCollection.php:24
ILIAS\GlobalScreen\Scope\Layout\MetaContent\MetaContent\$js
$js
Definition:
MetaContent.php:35
ILIAS\GlobalScreen\Scope\Layout\MetaContent\Media\Js\getBatch
getBatch()
Definition:
Js.php:58
ILIAS\GlobalScreen\Scope\Layout\MetaContent\Media\AbstractCollection\stripPath
stripPath(string $path)
Definition:
AbstractCollection.php:68
ILIAS\GlobalScreen\Scope\Layout\MetaContent\Media\JsCollection\getItemsInOrderOfDelivery
getItemsInOrderOfDelivery()
Definition:
JsCollection.php:56
ILIAS\GlobalScreen\Scope\Layout\MetaContent\Media\AbstractCollection\getItems
getItems()
Definition:
AbstractCollection.php:49
ILIAS\GlobalScreen\Scope\Layout\MetaContent\Media\JsCollection\storeItem
storeItem(js $item)
Definition:
JsCollection.php:44
ILIAS\GlobalScreen\Scope\Layout\MetaContent\Media
Definition:
AbstractCollection.php:1
src
GlobalScreen
Scope
Layout
MetaContent
Media
JsCollection.php
Generated on Thu Apr 3 2025 20:01:20 for ILIAS by
1.8.13 (using
Doxyfile
)