ILIAS  release_5-1 Revision 5.0.0-5477-g43f3e3fab5f
class.ilWorkflowStep.php
Go to the documentation of this file.
1<?php
2/* Copyright (c) 1998-2009 ILIAS open source, Extended GPL, see docs/LICENSE */
3
11abstract class ilWorkflowStep
12{
18 function setTitle($a_val)
19 {
20 $this->title = $a_val;
21 }
22
28 function getTitle()
29 {
30 return $this->title;
31 }
32
36 abstract function hasRun();
37
44 abstract function isFulfilled();
45}
46
47?>
hasRun()
Has run.
isFulfilled()
Is fulfilled.
setTitle($a_val)
Set title.