示例#1
0
 /**
  * Constructor
  *
  * Base constructor
  *
  * @access public
  */
 public function __construct()
 {
     $filePath = ___MODULE_QB_SERVICES___;
     $filePrefix = "service.";
     $classPrefix = __CLASS__ . "_";
     parent::__construct($filePath, $filePrefix, $classPrefix);
 }
示例#2
0
 /**
  * Constructor
  *
  * Base constructor
  *
  * @access public
  */
 public function __construct()
 {
     $filePath = ___MODULE_QB_ENTITIES___;
     $filePrefix = "entity.";
     $classPrefix = __CLASS__ . "_";
     parent::__construct($filePath, $filePrefix, $classPrefix);
 }
示例#3
0
 /**
  * Constructor
  *
  * Base constructor
  *
  * @access public
  */
 public function __construct()
 {
     $filePath = ___MODULE_QB_HANDLERS___;
     $filePrefix = "handler.";
     $classPrefix = __CLASS__ . "_";
     parent::__construct($filePath, $filePrefix, $classPrefix);
 }