Ignore:
Timestamp:
2013/05/02 18:11:36 (11 years ago)
Author:
h_yoshimoto
Message:

#2236 2.12.3リリース以降の2.12-devへのコミット差し戻し

File:
1 edited

Legend:

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

    r22567 r22796  
    3232 * @version $Id$ 
    3333 */ 
    34 class LC_Page_Admin_Products_ProductSelect extends LC_Page_Admin_Ex  
    35 { 
     34class LC_Page_Admin_Products_ProductSelect extends LC_Page_Admin_Ex { 
    3635 
    3736    // }}} 
     
    4342     * @return void 
    4443     */ 
    45     function init() 
    46     { 
     44    function init() { 
    4745        parent::init(); 
    4846        $this->tpl_mainpage = 'products/product_select.tpl'; 
     
    6159     * @return void 
    6260     */ 
    63     function process() 
    64     { 
     61    function process() { 
    6562        $this->action(); 
    6663        $this->sendResponse(); 
     
    7269     * @return void 
    7370     */ 
    74     function action() 
    75     { 
     71    function action() { 
    7672 
    7773        $objDb = new SC_Helper_DB_Ex(); 
     
    10298     * @return void 
    10399     */ 
    104     function destroy() 
    105     { 
     100    function destroy() { 
    106101        parent::destroy(); 
    107102    } 
     
    113108     * @return void 
    114109     */ 
    115     function lfInitParam(&$objFormParam) 
    116     { 
     110    function lfInitParam(&$objFormParam) { 
    117111        $objFormParam->addParam('カテゴリ', 'search_category_id', STEXT_LEN, 'n'); 
    118112        $objFormParam->addParam('商品名', 'search_name', STEXT_LEN, 'KVa'); 
     
    121115 
    122116    /* 商品検索結果取得 */ 
    123     function lfGetProducts(&$objDb) 
    124     { 
     117    function lfGetProducts(&$objDb) { 
    125118        $where = 'del_flg = 0'; 
    126119        $arrWhereVal = array(); 
Note: See TracChangeset for help on using the changeset viewer.