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

    r20503 r20507  
    7878        $objFormParam = new SC_FormParam_Ex(); 
    7979        $objProduct = new SC_Product_Ex(); 
    80         $objQuery =& SC_Query::getSingletonInstance(); 
     80        $objQuery =& SC_Query_Ex::getSingletonInstance(); 
    8181 
    8282        // 登録・更新検索開始年 
     
    253253     */ 
    254254    function doDelete($where, $arrParam = array()) { 
    255         $objQuery =& SC_Query::getSingletonInstance(); 
     255        $objQuery =& SC_Query_Ex::getSingletonInstance(); 
    256256        $objQuery->update("dtb_products", array('del_flg' => 1), $where, $arrParam); 
    257257        $objQuery->update("dtb_products_class", array('del_flg' => 1), $where, $arrParam); 
     
    357357     */ 
    358358    function getNumberOfLines($where, $arrValues) { 
    359         $objQuery =& SC_Query::getSingletonInstance(); 
     359        $objQuery =& SC_Query_Ex::getSingletonInstance(); 
    360360        return $objQuery->count('dtb_products', $where, $arrValues); 
    361361    } 
     
    373373     */ 
    374374    function findProducts($where, $arrValues, $limit, $offset, $order, &$objProduct) { 
    375         $objQuery =& SC_Query::getSingletonInstance(); 
     375        $objQuery =& SC_Query_Ex::getSingletonInstance(); 
    376376 
    377377        // 読み込む列とテーブルの指定 
Note: See TracChangeset for help on using the changeset viewer.