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/contents/LC_Page_Admin_Contents_RecommendSearch.php

    r22567 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_Contents_RecommendSearch extends LC_Page_Admin_Ex  
     33class LC_Page_Admin_Contents_RecommendSearch extends LC_Page_Admin_Ex 
    3534{ 
    36  
    37     // }}} 
    38     // {{{ functions 
    39  
    4035    /** 
    4136     * Page を初期化する. 
     
    7065    function action() 
    7166    { 
    72  
    7367        $objDb = new SC_Helper_DB_Ex(); 
    7468        $objFormParam = new SC_FormParam_Ex(); 
     
    144138        $objErr = new SC_CheckError_Ex($objFormParam->getHashArray()); 
    145139        $objErr->arrErr = $objFormParam->checkError(); 
     140 
    146141        return $objErr->arrErr; 
    147142    } 
     
    187182            } 
    188183        } 
     184 
    189185        return array( 
    190186            'where'=>$where, 
     
    207203        $objQuery->setWhere($where); 
    208204        $linemax = $objProduct->findProductCount($objQuery, $bind); 
     205 
    209206        return $linemax;   // 何件が該当しました。表示用 
    210207    } 
     
    240237        $order = 'update_date DESC, product_id DESC'; 
    241238        $objQuery->setOrder($order); 
     239 
    242240        return $objProduct->getListByProductIds($objQuery, $arrProductId); 
    243241    } 
Note: See TracChangeset for help on using the changeset viewer.