Ignore:
Timestamp:
2011/03/04 19:51:32 (13 years ago)
Author:
shutta
Message:

拡張クラス(/class_extends/)が存在するのに基底クラス(/class/)のメソッドを呼び出している部分を拡張クラスに書き換え。

Location:
branches/version-2_5-dev/data/class/pages/shopping
Files:
2 edited

Legend:

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

    r20477 r20484  
    123123 
    124124                // モバイルサイトで携帯アドレスの登録が無い場合、携帯アドレス登録ページへ遷移 
    125                 if(SC_Display::detectDevice() == DEVICE_TYPE_MOBILE) { 
     125                if(SC_Display_Ex::detectDevice() == DEVICE_TYPE_MOBILE) { 
    126126                    if($this->hasEmailMobile($objCustomer) == false) { 
    127127                        SC_Response_Ex::sendRedirectFromUrlPath('entry/email_mobile.php'); 
     
    223223 
    224224        // 携帯端末IDが一致する会員が存在するかどうかをチェックする。 
    225         if (SC_Display::detectDevice() === DEVICE_TYPE_MOBILE) { 
     225        if (SC_Display_Ex::detectDevice() === DEVICE_TYPE_MOBILE) { 
    226226            $this->tpl_valid_phone_id = $objCustomer->checkMobilePhoneId(); 
    227227        } 
     
    467467     */ 
    468468    function doLogin(&$objCustomer, $login_email, $login_pass) { 
    469         switch (SC_Display::detectDevice()) { 
     469        switch (SC_Display_Ex::detectDevice()) { 
    470470        case DEVICE_TYPE_MOBILE: 
    471471            if(!$objCustomer->getCustomerDataFromMobilePhoneIdPass($login_pass) && 
  • branches/version-2_5-dev/data/class/pages/shopping/LC_Page_Shopping_Payment.php

    r20448 r20484  
    142142            } 
    143143 
    144             if (SC_Display::detectDevice() != DEVICE_TYPE_MOBILE) { 
     144            if (SC_Display_Ex::detectDevice() != DEVICE_TYPE_MOBILE) { 
    145145                echo SC_Utils_Ex::jsonEncode($arrSelectedDeliv); 
    146146                exit; 
     
    210210 
    211211        // モバイル用 ポストバック処理 
    212         if (SC_Display::detectDevice() == DEVICE_TYPE_MOBILE) { 
     212        if (SC_Display_Ex::detectDevice() == DEVICE_TYPE_MOBILE) { 
    213213            $this->tpl_mainpage = $this->getMobileMainpage($this->is_single_deliv, $this->getMode()); 
    214214        } 
Note: See TracChangeset for help on using the changeset viewer.