Ignore:
Timestamp:
2011/02/11 18:57:22 (13 years ago)
Author:
kimoto
Message:

退会完了リファクタリング #981

File:
1 edited

Legend:

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

    r20116 r20141  
    4444    function init() { 
    4545        parent::init(); 
    46         $this->tpl_title = 'MYページ'; 
    47         if ( Net_UserAgent_Mobile::isMobile() === true){ 
     46        $this->tpl_title    = 'MYページ'; 
     47 
     48        if (SC_Display::detectDevice() === DEVICE_TYPE_MOBILE){ 
    4849            $this->tpl_title .= '/退会手続き(完了ページ)'; 
    4950        } else { 
    5051            $this->tpl_subtitle = '退会手続き(完了ページ)'; 
    5152        } 
    52         $this->tpl_navi = TEMPLATE_REALDIR . 'mypage/navi.tpl'; 
     53        $this->tpl_navi     = TEMPLATE_REALDIR . 'mypage/navi.tpl'; 
    5354        $this->tpl_mypageno = 'refusal'; 
    54         $this->point_disp = false; 
     55        $this->point_disp   = false; 
    5556    } 
    5657 
     
    6162     */ 
    6263    function process() { 
    63          parent::process(); 
     64        parent::process(); 
    6465        $this->action(); 
    6566        $this->sendResponse(); 
     
    7273     */ 
    7374    function action() { 
    74         $objCustomer = new SC_Customer(); 
    75         //マイページトップ顧客情報表示用 
    76         $this->CustomerName1 = $objCustomer->getvalue('name01'); 
    77         $this->CustomerName2 = $objCustomer->getvalue('name02'); 
    78         $this->CustomerPoint = $objCustomer->getvalue('point'); 
    7975    } 
    8076 
     
    8884    } 
    8985} 
    90 ?> 
Note: See TracChangeset for help on using the changeset viewer.