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_Category.php

    r22926 r23124  
    4040     * @return void 
    4141     */ 
    42     function init() 
     42    public function init() 
    4343    { 
    4444        parent::init(); 
     
    5050     * @return void 
    5151     */ 
    52     function process() 
     52    public function process() 
    5353    { 
    5454        $this->action(); 
     
    6161     * @return void 
    6262     */ 
    63     function action() 
     63    public function action() 
    6464    { 
    6565        // モバイル判定 
     
    8282     * 選択中のカテゴリIDを取得する. 
    8383     * 
    84      * @param array $arrRequest リクエスト配列 
     84     * @param  array $arrRequest リクエスト配列 
    8585     * @return array $arrCategoryId 選択中のカテゴリID 
    8686     */ 
    87     function lfGetSelectedCategoryId($arrRequest) 
     87    public function lfGetSelectedCategoryId($arrRequest) 
    8888    { 
    8989            // 商品ID取得 
     
    110110     * カテゴリツリーの取得. 
    111111     * 
    112      * @param array $arrParentCategoryId 親カテゴリの配列 
    113      * @param boolean $count_check 登録商品数をチェックする場合はtrue 
    114      * @return array $arrRet カテゴリツリーの配列を返す 
     112     * @param  array  $arrParentCategoryId 親カテゴリの配列 
     113     * @param  boolean $count_check        登録商品数をチェックする場合はtrue 
     114     * @return array   $arrRet カテゴリツリーの配列を返す 
    115115     */ 
    116     function lfGetCatTree($arrParentCategoryId, $count_check = false) 
     116    public function lfGetCatTree($arrParentCategoryId, $count_check = false) 
    117117    { 
    118118        $objCategory = new SC_Helper_Category_Ex($count_check); 
     
    132132     * メインカテゴリの取得. 
    133133     * 
    134      * @param boolean $count_check 登録商品数をチェックする場合はtrue 
    135      * @return array $arrMainCat メインカテゴリの配列を返す 
     134     * @param  boolean $count_check 登録商品数をチェックする場合はtrue 
     135     * @return array   $arrMainCat メインカテゴリの配列を返す 
    136136     */ 
    137     function lfGetMainCat($count_check = false) 
     137    public function lfGetMainCat($count_check = false) 
    138138    { 
    139139        $objQuery =& SC_Query_Ex::getSingletonInstance(); 
Note: See TracChangeset for help on using the changeset viewer.