Squiz Matrix  4.12.2
 All Data Structures Namespaces Functions Variables Pages
workflow_step_condition.inc
1 <?php
18 require_once SQ_INCLUDE_PATH.'/asset.inc';
19 
32 {
33 
34 
41  function __construct($assetid=0)
42  {
43  parent::__construct($assetid);
44 
45  }//end constructor
46 
47 
57  protected function _getName($short_name=FALSE)
58  {
59  return 'Step Condition';
60 
61  }//end _getName()
62 
63 
71  public function _getAllowedLinks()
72  {
73  return Array(
74  SQ_LINK_TYPE_1 => Array(),
75  SQ_LINK_TYPE_2 => Array(),
76  SQ_LINK_TYPE_3 => Array(),
77  SQ_LINK_NOTICE => Array(),
78  );
79 
80  }//end _getAllowedLinks()
81 
82 
83 }//end class
84 
85 ?>