Ignore:
Timestamp:
2013/06/08 16:35:27 (11 years ago)
Author:
Seasoft
Message:

#2043 (typo修正・ソース整形・ソースコメントの改善 for 2.13.0)

  • 主に空白・空白行の調整。もう少し整えたいが、一旦現状コミット。
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_13-dev/data/class/pages/shopping/LC_Page_Shopping_Payment.php

    r22568 r22856  
    2222 */ 
    2323 
    24 // {{{ requires 
    2524require_once CLASS_EX_REALDIR . 'page_extends/LC_Page_Ex.php'; 
    2625 
     
    3231 * @version $Id$ 
    3332 */ 
    34 class LC_Page_Shopping_Payment extends LC_Page_Ex  
     33class LC_Page_Shopping_Payment extends LC_Page_Ex 
    3534{ 
    36  
    37     // {{{ properties 
    38  
    3935    /** フォームパラメーターの配列 */ 
    4036    var $objFormParam; 
     
    4339    var $objCustomer; 
    4440 
    45     // }}} 
    46     // {{{ functions 
    4741 
    4842    /** 
     
    7973    function action() 
    8074    { 
    81  
    8275        $objSiteSess = new SC_SiteSession_Ex(); 
    8376        $objCartSess = new SC_CartSession_Ex(); 
     
    155148 
    156149                if (SC_Display_Ex::detectDevice() != DEVICE_TYPE_MOBILE) { 
    157  
    158150                    echo SC_Utils_Ex::jsonEncode($arrSelectedDeliv); 
    159151                    SC_Response_Ex::actionExit(); 
     
    342334            } 
    343335        } 
     336 
    344337        return $objErr->arrErr; 
    345338    } 
     
    380373    function lfRegistData($uniqid, $arrForm, &$objPurchase, $arrPayment) 
    381374    { 
    382  
    383375        $arrForm['order_temp_id'] = $uniqid; 
    384376        $arrForm['update_date'] = 'CURRENT_TIMESTAMP'; 
     
    427419        $arrResults['arrPayment'] = $arrPayment; 
    428420        $arrResults['img_show'] = $this->hasPaymentImage($arrResults['arrPayment']); 
     421 
    429422        return $arrResults; 
    430423    } 
     
    443436            } 
    444437        } 
     438 
    445439        return false; 
    446440    } 
Note: See TracChangeset for help on using the changeset viewer.