Ignore:
Timestamp:
2010/11/07 01:47:11 (16 years ago)
Author:
Yammy
Message:

LC_Page::sendRedirect() を SC_DIaplay::redirect() に移行

Location:
branches/camp/camp-2_5-E/data/class/pages/mypage
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • branches/camp/camp-2_5-E/data/class/pages/mypage/LC_Page_Mypage.php

    r19227 r19352  
    204204                    if (!$objMobile->gfIsMobileMailAddress($objCustomer->getValue('email'))) { 
    205205                        if (!$objCustomer->hasValue('email_mobile')) { 
    206                             $this->sendRedirect($this->getLocation("../entry/email_mobile.php"), true); 
     206                            $this->objDisplay->redirect($this->getLocation("../entry/email_mobile.php")); 
    207207                            exit; 
    208208                        } 
  • branches/camp/camp-2_5-E/data/class/pages/mypage/LC_Page_Mypage_Change.php

    r19227 r19352  
    191191 
    192192                //完了ページへ 
    193                 $this->sendRedirect($this->getLocation("./change_complete.php")); 
     193                $this->objDisplay->redirect($this->getLocation("./change_complete.php")); 
    194194                exit; 
    195195            } else { 
     
    408408                        $this->objCustomer->updateSession(); 
    409409                        //完了ページへ 
    410                         $this->sendRedirect($this->getLocation("./change_complete.php"), true); 
     410                        $this->objDisplay->redirect($this->getLocation("./change_complete.php")); 
    411411                        exit; 
    412412                    } else { 
  • branches/camp/camp-2_5-E/data/class/pages/mypage/LC_Page_Mypage_Favorite.php

    r19227 r19352  
    220220                    if (!$objMobile->gfIsMobileMailAddress($objCustomer->getValue('email'))) { 
    221221                        if (!$objCustomer->hasValue('email_mobile')) { 
    222                             $this->sendRedirect($this->getLocation("../entry/email_mobile.php"), true); 
     222                            $this->objDisplay->redirect($this->getLocation("../entry/email_mobile.php")); 
    223223                        } 
    224224                    } 
  • branches/camp/camp-2_5-E/data/class/pages/mypage/LC_Page_Mypage_Login.php

    r19227 r19352  
    7676        // ログイン判定 
    7777        if($objCustomer->isLoginSuccess()) { 
    78             $this->sendRedirect($this->getLocation(DIR_INDEX_URL, array(), true)); 
     78            $this->objDisplay->redirect($this->getLocation(DIR_INDEX_URL, array(), true)); 
    7979            exit; 
    8080        } else { 
  • branches/camp/camp-2_5-E/data/class/pages/mypage/LC_Page_Mypage_LoginCheck.php

    r19227 r19352  
    101101 
    102102            if($objCustomer->getCustomerDataFromEmailPass($arrForm['mypage_login_pass'], $arrForm['mypage_login_email'], true)) { 
    103                 $this->sendRedirect($this->getLocation(DIR_INDEX_URL, array(), true)); 
     103                $this->objDisplay->redirect($this->getLocation(DIR_INDEX_URL, array(), true)); 
    104104                exit; 
    105105            } else { 
  • branches/camp/camp-2_5-E/data/class/pages/mypage/LC_Page_Mypage_Order.php

    r19227 r19352  
    8383            $objCartSess->addProduct(array($product_id, $product_class_id, $cate_id1, $cate_id2), $quantity); 
    8484        } 
    85         $this->sendRedirect($this->getLocation(URL_CART_TOP)); 
     85        $this->objDisplay->redirect($this->getLocation(URL_CART_TOP)); 
    8686    } 
    8787 
     
    133133            $objCartSess->addProduct(array($product_id, $product_class_id, $cate_id1, $cate_id2), $quantity); 
    134134        } 
    135         $this->sendRedirect($this->getLocation(MOBILE_URL_CART_TOP), true); 
     135        $this->objDisplay->redirect($this->getLocation(MOBILE_URL_CART_TOP)); 
    136136    } 
    137137 
  • branches/camp/camp-2_5-E/data/class/pages/mypage/LC_Page_Mypage_Refusal.php

    r19227 r19352  
    117117            $objCustomer->EndSession(); 
    118118            //完了ページへ 
    119             $this->sendRedirect($this->getLocation("./refusal_complete.php")); 
     119            $this->objDisplay->redirect($this->getLocation("./refusal_complete.php")); 
    120120            exit; 
    121121        } 
     
    170170 
    171171        if (isset($_POST['no'])) { 
    172             $this->sendRedirect($this->getLocation(DIR_INDEX_URL), true); 
     172            $this->objDisplay->redirect($this->getLocation(DIR_INDEX_URL)); 
    173173            exit; 
    174174        } elseif (isset($_POST['complete'])){ 
     
    179179            $objCustomer->EndSession(); 
    180180            //完了ページへ 
    181             $this->sendRedirect($this->getLocation("./refusal_complete.php"), true); 
     181            $this->objDisplay->redirect($this->getLocation("./refusal_complete.php")); 
    182182            exit; 
    183183        } 
Note: See TracChangeset for help on using the changeset viewer.