Ignore:
Timestamp:
2013/08/24 23:33:52 (11 years ago)
Author:
kimoto
Message:

#2043 typo修正・ソース整形・ソースコメントの改善 for 2.13.0
PHP4的な書き方の修正

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_13-dev/data/class/pages/frontparts/bloc/LC_Page_FrontParts_Bloc_SearchProducts.php

    r22926 r23124  
    3838     * @return void 
    3939     */ 
    40     function init() 
     40    public function init() 
    4141    { 
    4242        parent::init(); 
     
    4848     * @return void 
    4949     */ 
    50     function process() 
     50    public function process() 
    5151    { 
    5252        $this->action(); 
     
    5959     * @return void 
    6060     */ 
    61     function action() 
     61    public function action() 
    6262    { 
    6363        // 商品ID取得 
     
    8282     * @return string $product_id 商品ID 
    8383     */ 
    84     function lfGetProductId() 
     84    public function lfGetProductId() 
    8585    { 
    8686        $product_id = ''; 
     
    9797     * @return string $category_id カテゴリID 
    9898     */ 
    99     function lfGetCategoryId() 
     99    public function lfGetCategoryId() 
    100100    { 
    101101        $category_id = ''; 
     
    112112     * @return string $maker_id メーカーID 
    113113     */ 
    114     function lfGetMakerId() 
     114    public function lfGetMakerId() 
    115115    { 
    116116        $maker_id = ''; 
     
    127127     * @return array $arrCategoryId 選択中のカテゴリID 
    128128     */ 
    129     function lfGetSelectedCategoryId($product_id, $category_id) 
     129    public function lfGetSelectedCategoryId($product_id, $category_id) 
    130130    { 
    131131        // 選択中のカテゴリIDを判定する 
     
    141141     * @return array $arrMakerId 選択中のメーカーID 
    142142     */ 
    143     function lfGetSelectedMakerId($product_id, $maker_id) 
     143    public function lfGetSelectedMakerId($product_id, $maker_id) 
    144144    { 
    145145        // 選択中のメーカーIDを判定する 
     
    155155     * @return array $arrCategoryList カテゴリ検索用選択リスト 
    156156     */ 
    157     function lfGetCategoryList() 
     157    public function lfGetCategoryList() 
    158158    { 
    159159        $objDb = new SC_Helper_DB_Ex(); 
     
    176176     * @return array $arrMakerList メーカー検索用選択リスト 
    177177     */ 
    178     function lfGetMakerList() 
     178    public function lfGetMakerList() 
    179179    { 
    180180        $objDb = new SC_Helper_DB_Ex(); 
Note: See TracChangeset for help on using the changeset viewer.