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/admin/basis/LC_Page_Admin_Basis_Tradelaw.php

    r23105 r23126  
    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(); 
     
    108108 
    109109    /* パラメーター情報の初期化 */ 
    110     function lfInitParam(&$objFormParam) 
     110    public function lfInitParam(&$objFormParam) 
    111111    { 
    112112        $objFormParam->addParam('販売業者', 'law_company', STEXT_LEN, 'KVa', array('EXIST_CHECK', 'MAX_LENGTH_CHECK')); 
     
    133133    } 
    134134 
    135     function lfUpdateData($sqlval) 
     135    public function lfUpdateData($sqlval) 
    136136    { 
    137137        $sqlval['update_date'] = 'CURRENT_TIMESTAMP'; 
     
    141141    } 
    142142 
    143     function lfInsertData($sqlval) 
     143    public function lfInsertData($sqlval) 
    144144    { 
    145145        $sqlval['update_date'] = 'CURRENT_TIMESTAMP'; 
     
    150150 
    151151    /* 入力内容のチェック */ 
    152     function lfCheckError(&$objFormParam) 
     152    public function lfCheckError(&$objFormParam) 
    153153    { 
    154154        // 入力データを渡す。 
Note: See TracChangeset for help on using the changeset viewer.