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/products/LC_Page_Products_List.php

    r20503 r20507  
    9595     */ 
    9696    function action() { 
    97         $objQuery =& SC_Query::getSingletonInstance(); 
     97        $objQuery =& SC_Query_Ex::getSingletonInstance(); 
    9898        $objProduct = new SC_Product_Ex(); 
    9999 
     
    235235        $arrval_order = array(); 
    236236 
    237         $objQuery =& SC_Query::getSingletonInstance(); 
     237        $objQuery =& SC_Query_Ex::getSingletonInstance(); 
    238238        // 表示順序 
    239239        switch ($this->orderby) { 
     
    298298            $where = '0<>0'; 
    299299        } 
    300         $objQuery =& SC_Query::getSingletonInstance(); 
     300        $objQuery =& SC_Query_Ex::getSingletonInstance(); 
    301301        $objQuery->setWhere($where); 
    302302        $arrProducts = $objProduct->lists($objQuery, $arrProduct_id); 
     
    377377     */     
    378378    function lfGetSearchConditionDisp($arrSearchData){ 
    379         $objQuery =& SC_Query::getSingletonInstance(); 
     379        $objQuery =& SC_Query_Ex::getSingletonInstance(); 
    380380        $arrSearch = array('category'=>"指定なし",'maker'=>"指定なし",'name'=>"指定なし"); 
    381381        // カテゴリー検索条件 
     
    403403    function lfGetProductAllNum($searchCondition){ 
    404404        // 検索結果対象となる商品の数を取得 
    405         $objQuery =& SC_Query::getSingletonInstance(); 
     405        $objQuery =& SC_Query_Ex::getSingletonInstance(); 
    406406        $objQuery->setWhere($searchCondition["where"]); 
    407407        $objProduct = new SC_Product_Ex(); 
Note: See TracChangeset for help on using the changeset viewer.