Ignore:
Timestamp:
2011/03/07 15:23:39 (13 years ago)
Author:
Seasoft
Message:

#627(ソース整形・ソースコメントの改善)
#628(未使用処理・定義などの削除)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_5-dev/data/class/pages/products/LC_Page_Products_CategoryList.php

    r20534 r20538  
    6868        $objFormParam = $this->lfInitParam($_REQUEST); 
    6969        $arrCategoryData = $this->lfGetCategories($objFormParam->getValue('category_id'), true, $this); 
    70         $this->arrCategory = $arrCategoryData["arrCategory"]; 
    71         $this->arrChildren = $arrCategoryData["arrChildren"]; 
     70        $this->arrCategory = $arrCategoryData['arrCategory']; 
     71        $this->arrChildren = $arrCategoryData['arrChildren']; 
    7272        $this->tpl_subtitle = $this->arrCategory['category_name']; 
    7373    } 
     
    145145        } 
    146146 
    147         return array("arrChildren"=>$arrChildren, "arrCategory"=>$arrCategory); 
     147        return array('arrChildren'=>$arrChildren, 'arrCategory'=>$arrCategory); 
    148148    } 
    149149 
     
    155155    function lfInitParam($arrRequest) { 
    156156        $objFormParam = new SC_FormParam_Ex(); 
    157         $objFormParam->addParam("カテゴリID", "category_id", INT_LEN, "n", array('NUM_CHECK',"MAX_LENGTH_CHECK")); 
     157        $objFormParam->addParam("カテゴリID", "category_id", INT_LEN, 'n', array('NUM_CHECK',"MAX_LENGTH_CHECK")); 
    158158        // 値の取得 
    159159        $objFormParam->setParam($arrRequest); 
Note: See TracChangeset for help on using the changeset viewer.