Changeset 19252
- Timestamp:
- 2010/11/07 00:20:40 (12 years ago)
- Location:
- branches/camp/camp-2_5-E/data/class/pages/shopping
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/camp/camp-2_5-E/data/class/pages/shopping/LC_Page_Shopping_Complete.php
r19091 r19252 59 59 */ 60 60 function process() { 61 parent::process(); 61 62 $this->action(); 62 63 $this->sendResponse(); … … 98 99 */ 99 100 function mobileProcess() { 101 parent::mobileProcess(); 100 102 $this->mobileAction(); 101 103 $this->sendResponse(); -
branches/camp/camp-2_5-E/data/class/pages/shopping/LC_Page_Shopping_Confirm.php
r19091 r19252 62 62 */ 63 63 function process() { 64 parent::process(); 64 65 $this->action(); 65 66 $this->sendResponse(); … … 67 68 68 69 /** 69 * Page の プロセス.70 * 71 * @return void 72 */ 73 function process() {70 * Page のアクション. 71 * 72 * @return void 73 */ 74 function action() { 74 75 $objView = new SC_SiteView(); 75 76 $objCartSess = new SC_CartSession(); … … 191 192 */ 192 193 function mobileProcess() { 194 parent::mobileProcess(); 193 195 $this->mobileAction(); 194 196 $this->sendResponse(); -
branches/camp/camp-2_5-E/data/class/pages/shopping/LC_Page_Shopping_Payment.php
r19091 r19252 65 65 */ 66 66 function process() { 67 parent::process(); 67 68 $this->action(); 68 69 $this->sendResponse(); … … 70 71 71 72 /** 72 * Page の プロセス.73 * Page のアクション. 73 74 * 74 75 * @return void … … 198 199 */ 199 200 function mobileProcess() { 201 parent::mobileProcess(); 200 202 $this->mobileAction(); 201 203 $this->sendResponse(); … … 207 209 * @return void 208 210 */ 209 function mobile Process() {211 function mobileAction() { 210 212 $objSiteSess = new SC_SiteSession(); 211 213 $objCartSess = new SC_CartSession();
Note: See TracChangeset
for help on using the changeset viewer.