Ignore:
Timestamp:
2013/02/18 19:09:54 (11 years ago)
Author:
shutta
Message:

#2043 (typo修正・ソース整形・ソースコメントの改善 for 2.12.4)
Zend Framework PHP 標準コーディング規約のコーディングスタイルへ準拠。
classおよびfunctionの開始波括弧「{」のスタイルを修正。

File:
1 edited

Legend:

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

    r22206 r22567  
    3232 * @version $Id$ 
    3333 */ 
    34 class LC_Page_FrontParts_Bloc_Category extends LC_Page_FrontParts_Bloc_Ex { 
     34class LC_Page_FrontParts_Bloc_Category extends LC_Page_FrontParts_Bloc_Ex  
     35{ 
    3536 
    3637    // }}} 
     
    4243     * @return void 
    4344     */ 
    44     function init() { 
     45    function init() 
     46    { 
    4547        parent::init(); 
    4648    } 
     
    5153     * @return void 
    5254     */ 
    53     function process() { 
     55    function process() 
     56    { 
    5457        $this->action(); 
    5558        $this->sendResponse(); 
     
    6164     * @return void 
    6265     */ 
    63     function action() { 
     66    function action() 
     67    { 
    6468 
    6569        // モバイル判定 
     
    8589     * @return void 
    8690     */ 
    87     function destroy() { 
     91    function destroy() 
     92    { 
    8893        parent::destroy(); 
    8994    } 
     
    95100     * @return array $arrCategoryId 選択中のカテゴリID 
    96101     */ 
    97     function lfGetSelectedCategoryId($arrRequest) { 
     102    function lfGetSelectedCategoryId($arrRequest) 
     103    { 
    98104            // 商品ID取得 
    99105        $product_id = ''; 
     
    122128     * @return array $arrRet カテゴリツリーの配列を返す 
    123129     */ 
    124     function lfGetCatTree($arrParentCategoryId, $count_check = false) { 
     130    function lfGetCatTree($arrParentCategoryId, $count_check = false) 
     131    { 
    125132        $objQuery =& SC_Query_Ex::getSingletonInstance(); 
    126133        $objDb = new SC_Helper_DB_Ex(); 
     
    171178     * @return array $arrMainCat メインカテゴリの配列を返す 
    172179     */ 
    173     function lfGetMainCat($count_check = false) { 
     180    function lfGetMainCat($count_check = false) 
     181    { 
    174182        $objQuery =& SC_Query_Ex::getSingletonInstance(); 
    175183        $col = '*'; 
Note: See TracChangeset for help on using the changeset viewer.