Ignore:
Timestamp:
2011/11/06 13:29:02 (12 years ago)
Author:
Seasoft
Message:

#1431 (用語の揺れ)

  • category = カテゴリ
File:
1 edited

Legend:

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

    r20810 r21317  
    6565        switch ( SC_Display_Ex::detectDevice() ) { 
    6666            case DEVICE_TYPE_MOBILE: 
    67                 // メインカテゴリの取得 
     67                // メインカテゴリの取得 
    6868                $this->arrCat = $this->lfGetMainCat(true); 
    6969                break; 
     
    117117     * @param array $arrParentCategoryId 親カテゴリの配列 
    118118     * @param boolean $count_check 登録商品数をチェックする場合はtrue 
    119      * @return array $arrRet カテゴリツリーの配列を返す 
     119     * @return array $arrRet カテゴリツリーの配列を返す 
    120120     */ 
    121121    function lfGetCatTree($arrParentCategoryId, $count_check = false) { 
     
    166166 
    167167    /** 
    168      * メインカテゴリの取得. 
     168     * メインカテゴリの取得. 
    169169     * 
    170170     * @param boolean $count_check 登録商品数をチェックする場合はtrue 
    171      * @return array $arrMainCat メインカテゴリの配列を返す 
     171     * @return array $arrMainCat メインカテゴリの配列を返す 
    172172     */ 
    173173    function lfGetMainCat($count_check = false) { 
     
    175175        $col = '*'; 
    176176        $from = 'dtb_category left join dtb_category_total_count using (category_id)'; 
    177         // メインカテゴリーとその直下のカテゴリーを取得する。 
     177        // メインカテゴリとその直下のカテゴリを取得する。 
    178178        $where = 'level <= 2 AND del_flg = 0'; 
    179179        // 登録商品数のチェック 
     
    183183        $objQuery->setOption('ORDER BY rank DESC'); 
    184184        $arrRet = $objQuery->select($col, $from, $where); 
    185         // メインカテゴリを抽出する。 
     185        // メインカテゴリを抽出する。 
    186186        $arrMainCat = array(); 
    187187        foreach ($arrRet as $cat) { 
     
    189189                continue; 
    190190            } 
    191             // 子カテゴリを持つかどうかを調べる。 
     191            // 子カテゴリを持つかどうかを調べる。 
    192192            $arrChildrenID = SC_Utils_Ex::sfGetUnderChildrenArray( 
    193193                $arrRet, 
Note: See TracChangeset for help on using the changeset viewer.