protected function __construct()
 {
     self::$_db = dbMysql::getInstance();
     if (!self::$_db) {
         return NULL;
     }
 }
示例#2
0
文件: Base.php 项目: reillo/ninjawars
 /**
  * Constructor
  *
  * Initialize the propel connection 
  */
 public function __construct()
 {
     if (!self::$init) {
         // Setup propel
         Propel::init(CONF_ROOT . 'connection.php');
         // flag init state
         self::$init = true;
     }
 }