Ignore:
Timestamp:
2011/03/04 23:24:33 (13 years ago)
Author:
shutta
Message:

SC_Queryクラスのclass_extends対応

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_5-dev/data/class/pages/rss/LC_Page_Rss_Products.php

    r20487 r20507  
    133133     */ 
    134134    function lfGetProductsDetailData($mode, $product_id) { 
    135         $objQuery = SC_Query::getSingletonInstance(); 
     135        $objQuery = SC_Query_Ex::getSingletonInstance(); 
    136136        //商品詳細を取得 
    137137        if ( $mode == 'all' ) { 
     
    186186     */ 
    187187    function lfGetProductsListData() { 
    188         $objQuery = SC_Query::getSingletonInstance(); 
     188        $objQuery = SC_Query_Ex::getSingletonInstance(); 
    189189        //商品一覧を取得 
    190190        $arrProduct = $objQuery->getAll('SELECT product_id, name AS product_name FROM dtb_products'); 
     
    198198     */ 
    199199    function lfGetProductsAllData() { 
    200         $objQuery = SC_Query::getSingletonInstance(); 
     200        $objQuery = SC_Query_Ex::getSingletonInstance(); 
    201201        //商品情報を取得 
    202202        $arrProduct = $this->lfGetProductsAllclass($objQuery); 
Note: See TracChangeset for help on using the changeset viewer.