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
RevisionCollection.php
Go to the documentation of this file.
1
<?php declare(strict_types=1);
2
3
namespace
ILIAS\MainMenu\Storage\Revision
;
4
5
use
ILIAS\MainMenu\Storage\Identification\ResourceIdentification
;
6
use
LogicException
;
7
13
class
RevisionCollection
14
{
15
19
private
$revisions
= [];
23
private
$identification
;
24
25
32
public
function
__construct
(
ResourceIdentification
$identification
, array
$revisions
= [])
33
{
34
$this->identification =
$identification
;
35
$this->revisions =
$revisions
;
36
}
37
38
39
public
function
add
(
Revision
$revision) : void
40
{
41
if
($this->identification->serialize() !== $revision->
getIdentification
()->serialize()) {
42
throw
new
LogicException
(
"Can't add Revision sice it'ss not the same ResourceIdentification"
);
43
}
44
foreach
($this->revisions as $r) {
45
if
($r->getVersionNumber() === $revision->
getVersionNumber
()) {
46
throw
new
LogicException
(sprintf(
"Can't add already existing version number: %s"
, $revision->
getVersionNumber
()));
47
}
48
}
49
$this->revisions[$revision->
getVersionNumber
()] = $revision;
50
sort($this->revisions);
51
}
52
53
54
public
function
remove
(
Revision
$revision) :
void
55
{
56
foreach
($this->revisions as $k => $revision_e) {
57
if
($revision->getVersionNumber() === $revision_e->getVersionNumber()) {
58
$revision_e->setUnavailable();
59
60
return
;
61
}
62
}
63
}
64
65
66
public
function
replace
(
Revision
$revision) : void
67
{
68
foreach
($this->revisions as $k => $revision_e) {
69
$revision_e->setUnavailable();
70
}
71
$this->
add
($revision);
72
}
73
74
75
public
function
getCurrent
() :
Revision
76
{
77
$current = end($this->revisions);
78
if
(!$current instanceof
Revision
) {
79
$current =
new
NullRevision
($this->identification);
80
}
81
82
return
$current;
83
}
84
85
89
public
function
getAll
() : array
90
{
91
return
$this->revisions
;
92
}
93
}
LogicException
ILIAS\MainMenu\Storage\Revision
Definition:
FileRevision.php:3
ILIAS\MainMenu\Storage\Identification\ResourceIdentification
Interface Identification.
Definition:
ResourceIdentification.php:14
ILIAS\MainMenu\Storage\Revision\RevisionCollection\getAll
getAll()
Definition:
RevisionCollection.php:89
ILIAS\MainMenu\Storage\Revision\Revision\getVersionNumber
getVersionNumber()
ILIAS\MainMenu\Storage\Revision\RevisionCollection
Class RevisionCollection.
Definition:
RevisionCollection.php:13
ILIAS\MainMenu\Storage\Revision\RevisionCollection\__construct
__construct(ResourceIdentification $identification, array $revisions=[])
RevisionCollection constructor.
Definition:
RevisionCollection.php:32
ILIAS\MainMenu\Storage\Revision\RevisionCollection\replace
replace(Revision $revision)
Definition:
RevisionCollection.php:66
ResourceIdentification
ILIAS\MainMenu\Storage\Revision\NullRevision
Class NullRevision.
Definition:
NullRevision.php:15
ILIAS\MainMenu\Storage\Revision\RevisionCollection\$identification
$identification
Definition:
RevisionCollection.php:23
ILIAS\MainMenu\Storage\Revision\RevisionCollection\$revisions
$revisions
Definition:
RevisionCollection.php:19
ILIAS\MainMenu\Storage\Revision\Revision
Class FileRevision.
Definition:
Revision.php:14
ILIAS\MainMenu\Storage\Revision\RevisionCollection\add
add(Revision $revision)
Definition:
RevisionCollection.php:39
ILIAS\MainMenu\Storage\Revision\RevisionCollection\getCurrent
getCurrent()
Definition:
RevisionCollection.php:75
ILIAS\MainMenu\Storage\Revision\Revision\getIdentification
getIdentification()
Services
MainMenu
classes
Storage
Revision
RevisionCollection.php
Generated on Thu Apr 3 2025 20:01:09 for ILIAS by
1.8.13 (using
Doxyfile
)