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
SeqConditionSet.php
Go to the documentation of this file.
1
<?php
2
3
declare(strict_types=1);
4
21
/*
22
PHP port of ADL SeqConditionSet.java
23
@author Hendrik Holtmann <holtmann@mac.com>
24
25
This .php file is GPL licensed (see above) but based on
26
SeqConditionSet.java by ADL Co-Lab, which is licensed as:
27
28
Advanced Distributed Learning Co-Laboratory (ADL Co-Lab) Hub grants you
29
("Licensee") a non-exclusive, royalty free, license to use, modify and
30
redistribute this software in source and binary code form, provided that
31
i) this copyright notice and license appear on all copies of the software;
32
and ii) Licensee does not utilize the software in a manner which is
33
disparaging to ADL Co-Lab Hub.
34
35
This software is provided "AS IS," without a warranty of any kind. ALL
36
EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING
37
ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE
38
OR NON-INFRINGEMENT, ARE HEREBY EXCLUDED. ADL Co-Lab Hub AND ITS LICENSORS
39
SHALL NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF
40
USING, MODIFYING OR DISTRIBUTING THE SOFTWARE OR ITS DERIVATIVES. IN NO
41
EVENT WILL ADL Co-Lab Hub OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE,
42
PROFIT OR DATA, OR FOR DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL,
43
INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE
44
THEORY OF LIABILITY, ARISING OUT OF THE USE OF OR INABILITY TO USE
45
SOFTWARE, EVEN IF ADL Co-Lab Hub HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
46
DAMAGES.
47
*/
48
49
define(
"EVALUATE_UNKNOWN"
, 0);
50
define(
"EVALUATE_TRUE"
, 1);
51
define(
"EVALUATE_FALSE"
, -1);
52
define(
"COMBINATION_ALL"
,
"all"
);
53
define(
"COMBINATION_ANY"
,
"any"
);
54
55
/******************************************************************************
56
*
57
* This file is part of ILIAS, a powerful learning management system.
58
*
59
* ILIAS is licensed with the GPL-3.0, you should have received a copy
60
* of said license along with the source code.
61
*
62
* If this is not the case or you just want to try ILIAS, you'll find
63
* us at:
64
* https://www.ilias.de
65
* https://github.com/ILIAS-eLearning
66
*
67
*****************************************************************************/
68
class
SeqConditionSet
69
{
70
public
?
string
$mCombination
= null;
71
72
//convert vector to array
73
public
?array
$mConditions
= null;
74
public
bool
$mRetry
=
false
;
75
public
bool
$mRollup
=
false
;
76
77
public
function
__construct
(
bool
$iRollup)
78
{
79
$this->mRollup = $iRollup;
80
}
81
}
SeqConditionSet\$mRetry
bool $mRetry
Definition:
SeqConditionSet.php:74
SeqConditionSet\$mConditions
array $mConditions
Definition:
SeqConditionSet.php:73
SeqConditionSet\$mCombination
string $mCombination
Definition:
SeqConditionSet.php:70
SeqConditionSet
Definition:
SeqConditionSet.php:68
SeqConditionSet\$mRollup
bool $mRollup
Definition:
SeqConditionSet.php:75
SeqConditionSet\__construct
__construct(bool $iRollup)
Definition:
SeqConditionSet.php:77
Modules
Scorm2004
classes
adlparser
SeqConditionSet.php
Generated on Fri Apr 4 2025 22:01:54 for ILIAS by
1.8.13 (using
Doxyfile
)