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

    r22567 r22796  
    3232 * @version $Id$ 
    3333 */ 
    34 class LC_Page_Admin_Basis_PaymentInput extends LC_Page_Admin_Ex  
    35 { 
     34class LC_Page_Admin_Basis_PaymentInput extends LC_Page_Admin_Ex { 
    3635 
    3736    // {{{ properties 
     
    4847     * @return void 
    4948     */ 
    50     function init() 
    51     { 
     49    function init() { 
    5250        parent::init(); 
    5351        $this->tpl_mainpage = 'basis/payment_input.tpl'; 
     
    6361     * @return void 
    6462     */ 
    65     function process() 
    66     { 
     63    function process() { 
    6764        $this->action(); 
    6865        $this->sendResponse(); 
     
    7471     * @return void 
    7572     */ 
    76     function action() 
    77     { 
     73    function action() { 
    7874 
    7975        $objPayment = new SC_Helper_Payment_Ex(); 
     
    164160     * @return void 
    165161     */ 
    166     function destroy() 
    167     { 
     162    function destroy() { 
    168163        parent::destroy(); 
    169164    } 
    170165 
    171166    /* ファイル情報の初期化 */ 
    172     function lfInitFile() 
    173     { 
     167    function lfInitFile() { 
    174168        $this->objUpFile->addFile('ロゴ画像', 'payment_image', array('gif','jpeg','jpg','png'), IMAGE_SIZE, false, CLASS_IMAGE_WIDTH, CLASS_IMAGE_HEIGHT); 
    175169        return $this->objUpFile; 
     
    177171 
    178172    /* パラメーター情報の初期化 */ 
    179     function lfInitParam($mode, &$objFormParam) 
    180     { 
     173    function lfInitParam($mode, &$objFormParam) { 
    181174 
    182175        switch ($mode) { 
     
    219212 
    220213    /* DBへデータを登録する */ 
    221     function lfRegistData(&$objFormParam, SC_Helper_Payment_Ex $objPayment, $member_id, $payment_id = '') 
    222     { 
     214    function lfRegistData(&$objFormParam, SC_Helper_Payment_Ex $objPayment, $member_id, $payment_id = '') { 
    223215 
    224216        $sqlval = array_merge($objFormParam->getHashArray(), $this->objUpFile->getDBFileList()); 
     217        $sqlval['update_date'] = 'CURRENT_TIMESTAMP'; 
    225218        $sqlval['payment_id'] = $payment_id; 
    226219        $sqlval['creator_id'] = $member_id; 
     
    236229 
    237230    /* 入力内容のチェック */ 
    238     function lfCheckError($post, $objFormParam, SC_Helper_Payment_Ex $objPayment) 
    239     { 
     231    function lfCheckError($post, $objFormParam, SC_Helper_Payment_Ex $objPayment) { 
    240232 
    241233        // DBのデータを取得 
Note: See TracChangeset for help on using the changeset viewer.