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/shopping/LC_Page_Shopping_LoadPaymentModule.php

    r23057 r23126  
    4141     * @return void 
    4242     */ 
    43     function init() 
     43    public function init() 
    4444    { 
    4545        $this->skip_load_page_layout = true; 
     
    5252     * @return void 
    5353     */ 
    54     function process() 
     54    public function process() 
    5555    { 
    5656        $order_id = $this->getOrderId(); 
    5757        if ($order_id === false) { 
    5858            SC_Utils_Ex::sfDispSiteError(PAGE_ERROR, '', true); 
     59 
    5960            return; 
    6061        } 
     
    6465            $msg = 'モジュールファイルの取得に失敗しました。<br />この手続きは無効となりました。'; 
    6566            SC_Utils_Ex::sfDispSiteError(FREE_ERROR_MSG, '', true, $msg); 
     67 
    6668            return; 
    6769        } 
     
    7577     * 受注IDが無効な場合, 取得したパスにファイルが存在しない場合は false 
    7678     * 
    77      * @param integer $order_id 受注ID 
     79     * @param  integer        $order_id 受注ID 
    7880     * @return string|boolean 成功した場合は決済モジュールのパス; 
    7981     *                        失敗した場合 false 
    8082     */ 
    81     function getModulePath($order_id) 
     83    public function getModulePath($order_id) 
    8284    { 
    8385        $objPurchase = new SC_Helper_Purchase_Ex(); 
     
    125127     *                         失敗した場合は, false を返す. 
    126128     */ 
    127     function getOrderId() 
     129    public function getOrderId() 
    128130    { 
    129131        if (isset($_SESSION['order_id']) 
     
    151153     * 決済モジュールから遷移する場合があるため, トークンチェックしない. 
    152154     */ 
    153     function doValidToken() 
     155    public function doValidToken() 
    154156    { 
    155157        // nothing. 
Note: See TracChangeset for help on using the changeset viewer.