Ignore:
Timestamp:
2013/06/08 16:35:27 (11 years ago)
Author:
Seasoft
Message:

#2043 (typo修正・ソース整形・ソースコメントの改善 for 2.13.0)

  • 主に空白・空白行の調整。もう少し整えたいが、一旦現状コミット。
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_13-dev/data/class/pages/admin/order/LC_Page_Admin_Order.php

    r22739 r22856  
    2222 */ 
    2323 
    24 // {{{ requires 
    2524require_once CLASS_EX_REALDIR . 'page_extends/admin/LC_Page_Admin_Ex.php'; 
    2625 
     
    3231 * @version $Id$ 
    3332 */ 
    34 class LC_Page_Admin_Order extends LC_Page_Admin_Ex  
     33class LC_Page_Admin_Order extends LC_Page_Admin_Ex 
    3534{ 
    36  
    37     // }}} 
    38     // {{{ functions 
    39  
    4035    /** 
    4136     * Page を初期化する. 
     
    9691    function action() 
    9792    { 
    98  
    9993        $objFormParam = new SC_FormParam_Ex(); 
    10094        $this->lfInitParam($objFormParam); 
     
    288282        $dbFactory = SC_DB_DBFactory_Ex::getInstance(); 
    289283        switch ($key) { 
    290  
    291284            case 'search_product_name': 
    292285                $where .= ' AND EXISTS (SELECT 1 FROM dtb_order_detail od WHERE od.order_id = dtb_order.order_id AND od.product_name LIKE ?)'; 
     
    454447    { 
    455448        $objQuery =& SC_Query_Ex::getSingletonInstance(); 
     449 
    456450        return $objQuery->count('dtb_order', $where, $arrValues); 
    457451    } 
     
    474468        } 
    475469        $objQuery->setOrder($order); 
     470 
    476471        return $objQuery->select('*', 'dtb_order', $where, $arrValues); 
    477472    } 
Note: See TracChangeset for help on using the changeset viewer.