Ignore:
Timestamp:
2013/08/24 23:33:52 (11 years ago)
Author:
kimoto
Message:

#2043 typo修正・ソース整形・ソースコメントの改善 for 2.13.0
PHP4的な書き方の修正

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_13-dev/data/class/pages/admin/products/LC_Page_Admin_Products_ProductSelect.php

    r23084 r23124  
    3838     * @return void 
    3939     */ 
    40     function init() 
     40    public function init() 
    4141    { 
    4242        parent::init(); 
     
    5656     * @return void 
    5757     */ 
    58     function process() 
     58    public function process() 
    5959    { 
    6060        $this->action(); 
     
    6767     * @return void 
    6868     */ 
    69     function action() 
     69    public function action() 
    7070    { 
    7171        $objDb = new SC_Helper_DB_Ex(); 
     
    9393     * パラメーター情報の初期化を行う. 
    9494     * 
    95      * @param SC_FormParam $objFormParam SC_FormParam インスタンス 
     95     * @param  SC_FormParam $objFormParam SC_FormParam インスタンス 
    9696     * @return void 
    9797     */ 
    98     function lfInitParam(&$objFormParam) 
     98    public function lfInitParam(&$objFormParam) 
    9999    { 
    100100        $objFormParam->addParam('カテゴリ', 'search_category_id', STEXT_LEN, 'n'); 
     
    104104 
    105105    /* 商品検索結果取得 */ 
    106     function lfGetProducts(&$objDb) 
     106    public function lfGetProducts(&$objDb) 
    107107    { 
    108108        $where = 'del_flg = 0'; 
     
    122122                    if ($tmp_where != '') { 
    123123                        $where.= ' AND product_id IN (SELECT product_id FROM dtb_product_categories WHERE ' . $tmp_where . ')'; 
    124                         $arrWhereVal = array_merge((array)$arrWhereVal, (array)$arrTmp); 
     124                        $arrWhereVal = array_merge((array) $arrWhereVal, (array) $arrTmp); 
    125125                    } 
    126126                    break; 
Note: See TracChangeset for help on using the changeset viewer.