Changeset 19352 for branches/camp/camp-2_5-E/data/class/pages/mypage
- Timestamp:
- 2010/11/07 01:47:11 (16 years ago)
- Location:
- branches/camp/camp-2_5-E/data/class/pages/mypage
- Files:
-
- 7 edited
-
LC_Page_Mypage.php (modified) (1 diff)
-
LC_Page_Mypage_Change.php (modified) (2 diffs)
-
LC_Page_Mypage_Favorite.php (modified) (1 diff)
-
LC_Page_Mypage_Login.php (modified) (1 diff)
-
LC_Page_Mypage_LoginCheck.php (modified) (1 diff)
-
LC_Page_Mypage_Order.php (modified) (2 diffs)
-
LC_Page_Mypage_Refusal.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/camp/camp-2_5-E/data/class/pages/mypage/LC_Page_Mypage.php
r19227 r19352 204 204 if (!$objMobile->gfIsMobileMailAddress($objCustomer->getValue('email'))) { 205 205 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")); 207 207 exit; 208 208 } -
branches/camp/camp-2_5-E/data/class/pages/mypage/LC_Page_Mypage_Change.php
r19227 r19352 191 191 192 192 //完了ページへ 193 $this-> sendRedirect($this->getLocation("./change_complete.php"));193 $this->objDisplay->redirect($this->getLocation("./change_complete.php")); 194 194 exit; 195 195 } else { … … 408 408 $this->objCustomer->updateSession(); 409 409 //完了ページへ 410 $this-> sendRedirect($this->getLocation("./change_complete.php"), true);410 $this->objDisplay->redirect($this->getLocation("./change_complete.php")); 411 411 exit; 412 412 } else { -
branches/camp/camp-2_5-E/data/class/pages/mypage/LC_Page_Mypage_Favorite.php
r19227 r19352 220 220 if (!$objMobile->gfIsMobileMailAddress($objCustomer->getValue('email'))) { 221 221 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")); 223 223 } 224 224 } -
branches/camp/camp-2_5-E/data/class/pages/mypage/LC_Page_Mypage_Login.php
r19227 r19352 76 76 // ログイン判定 77 77 if($objCustomer->isLoginSuccess()) { 78 $this-> sendRedirect($this->getLocation(DIR_INDEX_URL, array(), true));78 $this->objDisplay->redirect($this->getLocation(DIR_INDEX_URL, array(), true)); 79 79 exit; 80 80 } else { -
branches/camp/camp-2_5-E/data/class/pages/mypage/LC_Page_Mypage_LoginCheck.php
r19227 r19352 101 101 102 102 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)); 104 104 exit; 105 105 } else { -
branches/camp/camp-2_5-E/data/class/pages/mypage/LC_Page_Mypage_Order.php
r19227 r19352 83 83 $objCartSess->addProduct(array($product_id, $product_class_id, $cate_id1, $cate_id2), $quantity); 84 84 } 85 $this-> sendRedirect($this->getLocation(URL_CART_TOP));85 $this->objDisplay->redirect($this->getLocation(URL_CART_TOP)); 86 86 } 87 87 … … 133 133 $objCartSess->addProduct(array($product_id, $product_class_id, $cate_id1, $cate_id2), $quantity); 134 134 } 135 $this-> sendRedirect($this->getLocation(MOBILE_URL_CART_TOP), true);135 $this->objDisplay->redirect($this->getLocation(MOBILE_URL_CART_TOP)); 136 136 } 137 137 -
branches/camp/camp-2_5-E/data/class/pages/mypage/LC_Page_Mypage_Refusal.php
r19227 r19352 117 117 $objCustomer->EndSession(); 118 118 //完了ページへ 119 $this-> sendRedirect($this->getLocation("./refusal_complete.php"));119 $this->objDisplay->redirect($this->getLocation("./refusal_complete.php")); 120 120 exit; 121 121 } … … 170 170 171 171 if (isset($_POST['no'])) { 172 $this-> sendRedirect($this->getLocation(DIR_INDEX_URL), true);172 $this->objDisplay->redirect($this->getLocation(DIR_INDEX_URL)); 173 173 exit; 174 174 } elseif (isset($_POST['complete'])){ … … 179 179 $objCustomer->EndSession(); 180 180 //完了ページへ 181 $this-> sendRedirect($this->getLocation("./refusal_complete.php"), true);181 $this->objDisplay->redirect($this->getLocation("./refusal_complete.php")); 182 182 exit; 183 183 }
Note: See TracChangeset
for help on using the changeset viewer.
