コード例 #1
0
ファイル: Db.php プロジェクト: rcclaudrey/dev
 protected static function getDbConnection()
 {
     if (self::$_connection === null) {
         self::$_connection = self::getDbResource()->getConnection('core_read');
     }
     return self::$_connection;
 }
コード例 #2
0
ファイル: Category.php プロジェクト: rcclaudrey/dev
 public function getCategoryIds()
 {
     return Vikont_Data2data_Helper_Db::getTableValues('catalog/category', 'entity_id');
 }