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

    r22926 r23124  
    3434{ 
    3535    /** SC_UploadFile インスタンス */ 
    36     var $objUpFile; 
     36    public $objUpFile; 
    3737 
    3838    /** 
     
    4141     * @return void 
    4242     */ 
    43     function init() 
     43    public function init() 
    4444    { 
    4545        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        $objPayment = new SC_Helper_Payment_Ex(); 
     
    147147        $this->arrFile = $this->objUpFile->getFormFileList(IMAGE_TEMP_URLPATH, IMAGE_SAVE_URLPATH); 
    148148        // HIDDEN用に配列を渡す。 
    149         $this->arrHidden = array_merge((array)$this->arrHidden, (array)$this->objUpFile->getHiddenFileList()); 
     149        $this->arrHidden = array_merge((array) $this->arrHidden, (array) $this->objUpFile->getHiddenFileList()); 
    150150    } 
    151151 
    152152    /* ファイル情報の初期化 */ 
    153     function lfInitFile() 
     153    public function lfInitFile() 
    154154    { 
    155155        $this->objUpFile->addFile('ロゴ画像', 'payment_image', array('gif','jpeg','jpg','png'), IMAGE_SIZE, false, CLASS_IMAGE_WIDTH, CLASS_IMAGE_HEIGHT); 
     
    159159 
    160160    /* パラメーター情報の初期化 */ 
    161     function lfInitParam($mode, &$objFormParam) 
     161    public function lfInitParam($mode, &$objFormParam) 
    162162    { 
    163163        switch ($mode) { 
     
    200200 
    201201    /* DBへデータを登録する */ 
    202     function lfRegistData(&$objFormParam, SC_Helper_Payment_Ex $objPayment, $member_id, $payment_id = '') 
     202    public function lfRegistData(&$objFormParam, SC_Helper_Payment_Ex $objPayment, $member_id, $payment_id = '') 
    203203    { 
    204204        $sqlval = array_merge($objFormParam->getHashArray(), $this->objUpFile->getDBFileList()); 
     
    216216 
    217217    /* 入力内容のチェック */ 
    218     function lfCheckError($post, $objFormParam, SC_Helper_Payment_Ex $objPayment) 
     218    public function lfCheckError($post, $objFormParam, SC_Helper_Payment_Ex $objPayment) 
    219219    { 
    220220        // DBのデータを取得 
Note: See TracChangeset for help on using the changeset viewer.