Example #1
0
 function forms_module_front()
 {
     $this->_module_name = 'forms';
     $this->_common_obj =& forms_module_common::getInstance(true);
     $this->_tree =& $this->_common_obj->obj_tree;
     parent::__construct();
 }
Example #2
0
 static function getInstance($front_call = null)
 {
     if (!self::$instance) {
         self::$instance = new forms_module_common($front_call);
     }
     return self::$instance;
 }
Example #3
0
 function common_call($front_call = null)
 {
     $this->_module_name = 'forms';
     $this->_common_obj =& forms_module_common::getInstance();
     $this->_tree =& $this->_common_obj->obj_tree;
 }