Changeset 19401 for branches/camp/camp-2_5-E/data/class/pages/regist
- Timestamp:
- 2010/11/07 02:39:51 (16 years ago)
- Location:
- branches/camp/camp-2_5-E/data/class/pages/regist
- Files:
-
- 2 edited
-
LC_Page_Regist.php (modified) (4 diffs)
-
LC_Page_Regist_Complete.php (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/camp/camp-2_5-E/data/class/pages/regist/LC_Page_Regist.php
r19352 r19401 57 57 */ 58 58 function process() { 59 $objView = new SC_SiteView(); 59 parent::process(); 60 $this->action(); 61 $this->sendResponse(); 62 } 63 64 /** 65 * Page のAction. 66 * 67 * @return void 68 */ 69 function action() { 70 //$objView = new SC_SiteView(); 60 71 $objSiteInfo = $objView->objSiteInfo; 61 72 $objCustomer = new SC_Customer(); … … 96 107 97 108 //---- ページ表示 98 $objView->assignobj($this);99 $objView->display(SITE_FRAME);109 //$objView->assignobj($this); 110 //$objView->display(SITE_FRAME); 100 111 } 101 112 … … 115 126 */ 116 127 function mobileProcess() { 117 $objView = new SC_MobileView(); 128 parent::mobileProcess(); 129 $this->mobileAction(); 130 $this->sendResponse(); 131 } 132 133 /** 134 * Page のAction(モバイル). 135 * 136 * @return void 137 */ 138 function mobileAction() { 139 //$objView = new SC_MobileView(); 118 140 $objSiteInfo = $objView->objSiteInfo; 119 141 $objCustomer = new SC_Customer(); … … 150 172 151 173 //---- ページ表示 152 $objView->assignobj($this);153 $objView->display(SITE_FRAME);174 //$objView->assignobj($this); 175 //$objView->display(SITE_FRAME); 154 176 } 155 177 -
branches/camp/camp-2_5-E/data/class/pages/regist/LC_Page_Regist_Complete.php
r18701 r19401 55 55 */ 56 56 function process() { 57 parent::process(); 58 $this->action(); 59 $this->sendResponse(); 60 } 61 62 /** 63 * Page のAction. 64 * 65 * @return void 66 */ 67 function action() { 57 68 global $objCampaignSess; 58 69 59 $objView = new SC_SiteView();70 //$objView = new SC_SiteView(); 60 71 $objQuery = new SC_Query(); 61 72 $objCampaignSess = new SC_CampaignSession(); … … 74 85 $helper->sfGetPageLayout($this, false, DEF_LAYOUT); 75 86 76 $objView->assignobj($this);87 //$objView->assignobj($this); 77 88 // フレームを選択(キャンペーンページから遷移なら変更) 89 /* 78 90 if($this->dir_name != "") { 79 91 $objView->display(CAMPAIGN_TEMPLATE_PATH . $dir_name . "/active/site_frame.tpl"); … … 82 94 $objView->display(SITE_FRAME); 83 95 } 96 * 97 */ 84 98 } 85 99 … … 99 113 */ 100 114 function mobileProcess() { 101 $objView = new SC_MobileView(); 115 parent::mobileProcess(); 116 $this->mobileAction(); 117 $this->sendResponse(); 118 } 119 120 /** 121 * Page のAction(モバイル). 122 * 123 * @return void 124 */ 125 function mobileAction() { 126 127 //$objView = new SC_MobileView(); 102 128 103 129 // カートが空かどうかを確認する。 … … 105 131 $this->tpl_cart_empty = count($objCartSess->getCartList()) < 1; 106 132 107 $objView->assignobj($this);108 $objView->display(SITE_FRAME);133 //$objView->assignobj($this); 134 //$objView->display(SITE_FRAME); 109 135 } 110 136
Note: See TracChangeset
for help on using the changeset viewer.
