Changeset 19028
- Timestamp:
- 2010/11/06 21:15:46 (16 years ago)
- Location:
- branches/camp/camp-2_5-E/data
- Files:
-
- 3 edited
-
class/pages/LC_Page.php (modified) (1 diff)
-
class/pages/LC_Page_Index.php (modified) (4 diffs)
-
require_classes.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/camp/camp-2_5-E/data/class/pages/LC_Page.php
r18995 r19028 97 97 */ 98 98 function process() {} 99 100 /** 101 * Page のアクション. 102 * 103 * @return void 104 */ 105 function sendResponse() { 106 $this->objDisp->hoge($this); 107 } 99 108 100 109 /** -
branches/camp/camp-2_5-E/data/class/pages/LC_Page_Index.php
r18995 r19028 54 54 */ 55 55 function mobileInit() { 56 $this-> tpl_mainpage = 'top.tpl';56 $this->init(); 57 57 } 58 58 … … 63 63 */ 64 64 function process() { 65 parent::process(); 65 66 $this->action(); 66 $this->sendRes ();67 $this->sendResponse(); 67 68 } 68 69 … … 80 81 81 82 /** 82 * Page の アクション.83 * Page のプロセス(モバイル). 83 84 * 84 85 * @return void 85 86 */ 86 function sendRes() { 87 $this->objDisp->hoge($this); 87 function mobileProcess() { 88 $this->mobileAction(); 89 $this->sendResponse(); 88 90 } 89 91 … … 93 95 * @return void 94 96 */ 95 function mobile Process() {97 function mobileAction() { 96 98 $objCustomer = new SC_Customer(); 97 99 98 $objView = new SC_MobileView();99 $objView->assign("isLogin", $objCustomer->isLoginSuccess(true));100 $objView->assignobj($this);101 $objView->display(SITE_FRAME);100 #$objView = new SC_MobileView(); 101 #$objView->assign("isLogin", $objCustomer->isLoginSuccess(true)); 102 #$objView->assignobj($this); 103 #$objView->display(SITE_FRAME); 102 104 } 103 105 -
branches/camp/camp-2_5-E/data/require_classes.php
r18860 r19028 48 48 require_once(CLASS_PATH . "SC_MobileImage.php"); 49 49 require_once(CLASS_PATH . "SC_Product.php"); 50 require_once(CLASS_PATH . "SC_Display.php"); 50 51 require_once(CLASS_EX_PATH . "helper_extends/SC_Helper_PageLayout_Ex.php"); 51 52 require_once(CLASS_EX_PATH . "helper_extends/SC_Helper_DB_Ex.php");
Note: See TracChangeset
for help on using the changeset viewer.
