ILIAS
trunk Revision v11.0_alpha-1702-gfd3ecb7f852
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
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
k
l
m
n
o
p
r
s
t
u
v
w
x
+
Variables
$
c
e
g
h
j
l
m
p
s
t
u
v
+
Enumerations
a
c
e
f
i
j
l
m
n
o
p
r
s
t
u
v
z
+
Enumerator
a
c
d
e
f
g
i
l
m
n
o
p
q
s
t
u
v
y
+
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
Ö
Enumerations
Enumerator
+
Files
File List
+
Globals
+
All
$
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
z
+
Functions
a
b
c
d
e
f
g
h
i
m
n
p
r
s
t
u
v
+
Variables
$
a
c
e
g
h
i
m
n
o
p
r
s
t
u
v
z
Enumerations
Enumerator
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Enumerations
Enumerator
Modules
Pages
class.ilAssQuestionLomLifecycle.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
26
class
ilAssQuestionLomLifecycle
27
{
28
public
const
DRAFT
=
'draft'
;
29
public
const
FINAL
=
'final'
;
30
public
const
REVISED
=
'revised'
;
31
public
const
UNAVAILABLE
=
'unavailable'
;
32
33
protected
string
$identifier
;
34
40
public
function
__construct
($identifier =
''
)
41
{
42
if
(is_string($identifier) && $identifier !==
''
) {
43
$identifier = strtolower($identifier);
44
}
45
46
$this->
validateIdentifier
($identifier);
47
$this->
setIdentifier
($identifier);
48
}
49
50
public
function
getIdentifier
(): string
51
{
52
return
$this->identifier
;
53
}
54
59
public
function
setIdentifier
($identifier): void
60
{
61
$this->
validateIdentifier
($identifier);
62
$this->identifier =
$identifier
;
63
}
64
68
public
function
getValidIdentifiers
(): array
69
{
70
return
[
self::DRAFT
, self::FINAL, self::REVISED, self::UNAVAILABLE];
71
}
72
77
public
function
validateIdentifier
($identifier): void
78
{
79
if
(!in_array($identifier, $this->
getValidIdentifiers
(),
true
)) {
80
throw
new
ilTestQuestionPoolInvalidArgumentException
(
81
'Invalid lom lifecycle given: '
. $identifier
82
);
83
}
84
}
85
86
public
function
getMappedIliasLifecycleIdentifer
(): string
87
{
88
switch
($this->
getIdentifier
()) {
89
case
self::UNAVAILABLE:
90
return
ilAssQuestionLifecycle::OUTDATED
;
91
92
case
self::REVISED:
93
case
self::FINAL:
94
return
ilAssQuestionLifecycle::FINAL
;
95
96
case
self::DRAFT
:
97
default
:
98
return
ilAssQuestionLifecycle::DRAFT
;
99
}
100
}
101
}
ilAssQuestionLomLifecycle\REVISED
const REVISED
Definition:
class.ilAssQuestionLomLifecycle.php:30
ilAssQuestionLifecycle\OUTDATED
const OUTDATED
Definition:
class.ilAssQuestionLifecycle.php:31
ilAssQuestionLomLifecycle
Definition:
class.ilAssQuestionLomLifecycle.php:26
ilAssQuestionLomLifecycle\setIdentifier
setIdentifier($identifier)
Definition:
class.ilAssQuestionLomLifecycle.php:59
ilAssQuestionLomLifecycle\getValidIdentifiers
getValidIdentifiers()
Definition:
class.ilAssQuestionLomLifecycle.php:68
ilAssQuestionLomLifecycle\$identifier
string $identifier
Definition:
class.ilAssQuestionLomLifecycle.php:33
ilAssQuestionLomLifecycle\FINAL
const FINAL
Definition:
class.ilAssQuestionLomLifecycle.php:29
ilAssQuestionLomLifecycle\validateIdentifier
validateIdentifier($identifier)
Definition:
class.ilAssQuestionLomLifecycle.php:77
ILIAS\ResourceStorage\Revision\DRAFT
Definition:
RevisionStatus.php:27
ilAssQuestionLomLifecycle\UNAVAILABLE
const UNAVAILABLE
Definition:
class.ilAssQuestionLomLifecycle.php:31
ilAssQuestionLomLifecycle\getMappedIliasLifecycleIdentifer
getMappedIliasLifecycleIdentifer()
Definition:
class.ilAssQuestionLomLifecycle.php:86
ilAssQuestionLifecycle\DRAFT
const DRAFT
Definition:
class.ilAssQuestionLifecycle.php:26
ilAssQuestionLomLifecycle\DRAFT
const DRAFT
Definition:
class.ilAssQuestionLomLifecycle.php:28
ilAssQuestionLomLifecycle\__construct
__construct($identifier='')
ilAssQuestionLomLifecycle constructor.
Definition:
class.ilAssQuestionLomLifecycle.php:40
ilAssQuestionLifecycle\FINAL
const FINAL
Definition:
class.ilAssQuestionLifecycle.php:29
ilAssQuestionLomLifecycle\getIdentifier
getIdentifier()
Definition:
class.ilAssQuestionLomLifecycle.php:50
ilTestQuestionPoolInvalidArgumentException
Definition:
ilTestQuestionPoolInvalidArgumentException.php:26
components
ILIAS
TestQuestionPool
classes
questions
class.ilAssQuestionLomLifecycle.php
Generated on Thu Apr 3 2025 23:03:59 for ILIAS by
1.8.13 (using
Doxyfile
)