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/frontparts/bloc/LC_Page_FrontParts_Bloc_SearchProducts.php

    r22567 r22856  
    2222 */ 
    2323 
    24 // {{{ requires 
    2524require_once CLASS_EX_REALDIR . 'page_extends/frontparts/bloc/LC_Page_FrontParts_Bloc_Ex.php'; 
    2625 
     
    3231 * @version $Id:LC_Page_FrontParts_Bloc_SearchProducts.php 15532 2007-08-31 14:39:46Z nanasess $ 
    3332 */ 
    34 class LC_Page_FrontParts_Bloc_SearchProducts extends LC_Page_FrontParts_Bloc_Ex  
     33class LC_Page_FrontParts_Bloc_SearchProducts extends LC_Page_FrontParts_Bloc_Ex 
    3534{ 
    36  
    37     // }}} 
    38     // {{{ functions 
    39  
    4035    /** 
    4136     * Page を初期化する. 
     
    6661    function action() 
    6762    { 
    68  
    6963        // 商品ID取得 
    7064        $product_id = $this -> lfGetProductId(); 
     
    106100            $product_id = $_GET['product_id']; 
    107101        } 
     102 
    108103        return $product_id; 
    109104    } 
     
    120115            $category_id = $_GET['category_id']; 
    121116        } 
     117 
    122118        return $category_id; 
    123119    } 
     
    134130            $maker_id = $_GET['maker_id']; 
    135131        } 
     132 
    136133        return $maker_id; 
    137134    } 
     
    147144        $objDb = new SC_Helper_DB_Ex(); 
    148145        $arrCategoryId = $objDb->sfGetCategoryId($product_id, $category_id); 
     146 
    149147        return $arrCategoryId; 
    150148    } 
     
    160158        $objDb = new SC_Helper_DB_Ex(); 
    161159        $arrMakerId = $objDb->sfGetMakerId($product_id, $maker_id); 
     160 
    162161        return $arrMakerId; 
    163162    } 
     
    180179            } 
    181180        } 
     181 
    182182        return $arrCategoryList; 
    183183    } 
     
    199199            } 
    200200        } 
     201 
    201202        return $arrMakerList; 
    202203    } 
Note: See TracChangeset for help on using the changeset viewer.