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

    r22602 r22856  
    2222 */ 
    2323 
    24 // {{{ requires 
    2524require_once CLASS_EX_REALDIR . 'page_extends/frontparts/bloc/LC_Page_FrontParts_Bloc_Ex.php'; 
    2625 
     
    3231 * @version $Id$ 
    3332 */ 
    34 class LC_Page_FrontParts_Bloc_Category extends LC_Page_FrontParts_Bloc_Ex  
     33class LC_Page_FrontParts_Bloc_Category extends LC_Page_FrontParts_Bloc_Ex 
    3534{ 
    36  
    37     // }}} 
    38     // {{{ functions 
    3935    public $arrParentID; 
    4036 
     
    6763    function action() 
    6864    { 
    69  
    7065        // モバイル判定 
    7166        switch (SC_Display_Ex::detectDevice()) { 
     
    8176                break; 
    8277        } 
    83  
    8478 
    8579    } 
     
    119113            $arrCategoryId = array(0); 
    120114        } 
     115 
    121116        return $arrCategoryId; 
    122117    } 
     
    137132        foreach ($arrParentCategoryId as $category_id) { 
    138133            $arrParentID = $objCategory->getTreeTrail($category_id); 
    139             $this->arrParentID = array_merge($this->arrParentID, $arrParentID);  
     134            $this->arrParentID = array_merge($this->arrParentID, $arrParentID); 
    140135            $this->root_parent_id[] = $arrParentID[0]; 
    141136        } 
     
    179174            $arrMainCat[] = $cat; 
    180175        } 
     176 
    181177        return $arrMainCat; 
    182178    } 
Note: See TracChangeset for help on using the changeset viewer.