/**
  * class constructor
  *
  * @param object $stateMachine reference to state machine object
  *
  * @return object
  * @access public
  */
 function __construct(&$stateMachine)
 {
     parent::__construct($stateMachine);
 }
示例#2
0
 /**
  * class constructor
  *
  * @param object $stateMachine reference to state machine object
  *
  * @return object
  * @access public
  */
 function CRM_Core_QuickForm_Action_Cancel(&$stateMachine)
 {
     parent::CRM_Core_QuickForm_Action($stateMachine);
 }
示例#3
0
 /**
 * class constructor
 *
 * @param object $stateMachine reference to state machine object
 * @param string $uploadDir directory to store the uploaded files
 * @param array $uploadNames element names of the various uploadable files
 *
 * @return \CRM_Core_QuickForm_Action_Upload
   @access public
 */
 function __construct(&$stateMachine, $uploadDir, $uploadNames)
 {
     parent::__construct($stateMachine);
     $this->_uploadDir = $uploadDir;
     $this->_uploadNames = $uploadNames;
 }
示例#4
0
 /**
  * class constructor
  *
  * @param object $stateMachine reference to state machine object
  *
  * @return object
  * @access public
  */
 function CRM_Core_QuickForm_Action_Display(&$stateMachine)
 {
     parent::CRM_Core_QuickForm_Action($stateMachine);
 }
示例#5
0
 /**
  * class constructor
  *
  * @param object $stateMachine reference to state machine object
  *
  * @return object
  * @access public
  */
 function CRM_Core_QuickForm_Action_Submit(&$stateMachine)
 {
     parent::CRM_Core_QuickForm_Action($stateMachine);
 }
示例#6
0
 /**
  * class constructor
  *
  * @param object $stateMachine reference to state machine object
  *
  * @return object
  * @access public
  */
 function CRM_Core_QuickForm_Action_Process(&$stateMachine)
 {
     parent::CRM_Core_QuickForm_Action($stateMachine);
 }
示例#7
0
 /**
  * class constructor
  *
  * @param object $stateMachine reference to state machine object
  * @param string $uploadDir    directory to store the uploaded files
  * @param array  $uploadNames  element names of the various uploadable files
  * @return object
  * @access public
  */
 function CRM_Core_QuickForm_Action_Upload(&$stateMachine, $uploadDir, $uploadNames)
 {
     parent::CRM_Core_QuickForm_Action($stateMachine);
     $this->_uploadDir = $uploadDir;
     $this->_uploadNames = $uploadNames;
 }
示例#8
0
 /**
  * class constructor
  *
  * @param object $stateMachine reference to state machine object
  *
  * @return object
  * @access public
  */
 function CRM_Core_QuickForm_Action_Refresh(&$stateMachine)
 {
     parent::CRM_Core_QuickForm_Action($stateMachine);
 }