Ignore:
Timestamp:
2011/01/12 12:12:16 (13 years ago)
Author:
fukuda
Message:

#880(mobile/sphoneディレクトリを削除)に対応。まずmobileのみ意図通りの動作になるように一部コミット(mypageディレクトリ) changeは作業中

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_5-dev/data/class/pages/mypage/LC_Page_Mypage_ChangeComplete.php

    r19807 r19881  
    6767     */ 
    6868    function action() { 
    69         //$objView = new SC_SiteView(); 
    70         $objCustomer = new SC_Customer(); 
    71  
    72         //ログイン判定 
    73         if (!$objCustomer->isLoginSuccess()){ 
    74             SC_Utils_Ex::sfDispSiteError(CUSTOMER_ERROR); 
    75         } else { 
    76             //マイページトップ顧客情報表示用 
    77             $this->tpl_login = true; 
    78             $this->CustomerName1 = $objCustomer->getvalue('name01'); 
    79             $this->CustomerName2 = $objCustomer->getvalue('name02'); 
    80             $this->CustomerPoint = $objCustomer->getvalue('point'); 
    81         } 
    82  
    83         //$objView->assignobj($this); 
    84         //$objView->display(SITE_FRAME); 
    85     } 
    86  
    87     /** 
    88      * モバイルページを初期化する. 
    89      * 
    90      * @return void 
    91      */ 
    92     function mobileInit() { 
    93         $this->init(); 
    94         $this->tpl_mainpage = 'mypage/change_complete.tpl'; 
    95         $this->tpl_title = 'MYページ/会員登録内容変更(完了ページ)'; 
    96     } 
    97  
    98     /** 
    99      * Page のプロセス(モバイル). 
    100      * 
    101      * @return void 
    102      */ 
    103     function mobileProcess() { 
    104         parent::mobileProcess(); 
    105         $this->mobileAction(); 
    106         $this->sendResponse(); 
    107     } 
    108  
    109     /** 
    110      * Page のAction(モバイル). 
    111      * 
    112      * @return void 
    113      */ 
    114     function mobileAction() { 
    115  
    116         //$objView = new SC_MobileView(); 
    11769        $objCustomer = new SC_Customer(); 
    11870 
     
    12981            $this->CustomerPoint = $objCustomer->getvalue('point'); 
    13082        } 
    131  
    132         //$objView->assignobj($this); 
    133         //$objView->display(SITE_FRAME); 
    13483    } 
    13584 
Note: See TracChangeset for help on using the changeset viewer.