Ignore:
Timestamp:
2013/08/26 15:52:37 (11 years ago)
Author:
m_uehara
Message:

#2348 r23116 - r23125 をマージ

File:
1 edited

Legend:

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

    r23015 r23126  
    3838     * @return void 
    3939     */ 
    40     function init() 
     40    public function init() 
    4141    { 
    4242        parent::init(); 
     
    4848     * @return void 
    4949     */ 
    50     function process() 
     50    public function process() 
    5151    { 
    5252        parent::process(); 
     
    5959     * @return void 
    6060     */ 
    61     function action() 
     61    public function action() 
    6262    { 
    6363        $objFormParam = $this->lfInitParam($_REQUEST); 
     
    7777 
    7878    /* カテゴリIDの正当性チェック */ 
    79     function lfCheckCategoryId($category_id) 
     79    public function lfCheckCategoryId($category_id) 
    8080    { 
    81         if ($category_id && !SC_Helper_DB_Ex::sfIsRecord('dtb_category', 'category_id', (array)$category_id, 'del_flg = 0')) { 
     81        if ($category_id && !SC_Helper_DB_Ex::sfIsRecord('dtb_category', 'category_id', (array) $category_id, 'del_flg = 0')) { 
    8282            return 0; 
    8383        } 
     
    9090     * ページオブジェクトに格納する。 
    9191     * 
    92      * @param string $category_id カテゴリID 
    93      * @param boolean $count_check 有効な商品がないカテゴリを除くかどうか 
     92     * @param  string $category_id カテゴリID 
     93     * @param  boolean $count_check 有効な商品がないカテゴリを除くかどうか 
    9494     * @return void 
    9595     */ 
    96     function lfGetCategories($category_id, $count_check = false) 
     96    public function lfGetCategories($category_id, $count_check = false) 
    9797    { 
    9898        $arrCategory = null;    // 選択されたカテゴリ 
     
    143143     * @return object 
    144144     */ 
    145     function lfInitParam($arrRequest) 
     145    public function lfInitParam($arrRequest) 
    146146    { 
    147147        $objFormParam = new SC_FormParam_Ex(); 
Note: See TracChangeset for help on using the changeset viewer.