ILIAS  eassessment Revision 61809
 All Data Structures Namespaces Files Functions Variables Groups Pages
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 
11 abstract 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 ?>