ILIAS
release_5-0 Revision 5.0.0-1144-gc4397b1f870
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
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
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
+
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
k
l
m
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
class.ilWorkflow.php
Go to the documentation of this file.
1
<?php
2
/* Copyright (c) 1998-2009 ILIAS open source, Extended GPL, see docs/LICENSE */
3
13
class
ilWorkflow
14
{
15
var
$steps
= array();
16
20
function
__construct
()
21
{
22
}
23
29
function
setTitle
($a_val)
30
{
31
$this->title = $a_val;
32
}
33
39
function
getTitle
()
40
{
41
return
$this->title;
42
}
43
49
function
addStep
($a_step)
50
{
51
$this->steps[] = $a_step;
52
}
53
57
function
getSteps
()
58
{
59
return
$this->steps
;
60
}
61
66
function
determineNextStep
()
67
{
68
foreach
($this->steps as $step)
69
{
70
if
(!$step->hasRun())
71
{
72
return
$step;
73
}
74
75
if
(!$step->isFulfilled())
76
{
77
return
$step;
78
}
79
}
80
return
null;
81
}
82
}
83
84
?>
ilWorkflow\getTitle
getTitle()
Get title.
Definition:
class.ilWorkflow.php:39
ilWorkflow\determineNextStep
determineNextStep()
Determine next step.
Definition:
class.ilWorkflow.php:66
ilWorkflow\setTitle
setTitle($a_val)
Set title.
Definition:
class.ilWorkflow.php:29
ilWorkflow
Workflow.
Definition:
class.ilWorkflow.php:13
ilWorkflow\getSteps
getSteps()
Get workflow steps.
Definition:
class.ilWorkflow.php:57
ilWorkflow\$steps
$steps
Definition:
class.ilWorkflow.php:15
ilWorkflow\__construct
__construct()
Constructor.
Definition:
class.ilWorkflow.php:20
ilWorkflow\addStep
addStep($a_step)
Add a workflow step.
Definition:
class.ilWorkflow.php:49
Services
Workflow
classes
class.ilWorkflow.php
Generated on Mon Mar 31 2025 19:00:55 for ILIAS by
1.8.13 (using
Doxyfile
)