Changeset 16157 for branches/feature-module-update/data/class
- Timestamp:
- 2007/09/28 15:58:44 (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/feature-module-update/data/class/pages/frontparts/bloc/LC_Page_FrontParts_Bloc_Best5.php
r15532 r16157 14 14 * @package Page 15 15 * @author LOCKON CO.,LTD. 16 * @version $Id $16 * @version $Id:LC_Page_FrontParts_Bloc_Best5.php 15532 2007-08-31 14:39:46Z nanasess $ 17 17 */ 18 18 class LC_Page_FrontParts_Bloc_Best5 extends LC_Page { … … 37 37 */ 38 38 function process() { 39 $objSubView = new SC_SiteView(); 39 if (defined(MOBILE_SITE) && MOBILE_SITE) { 40 $objView = new SC_MobileView(); 41 } else { 42 $objView = new SC_SiteView(); 43 } 40 44 $objSiteInfo = $objView->objSiteInfo; 41 45 … … 47 51 $this->arrBestProducts = $this->lfGetRanking(); 48 52 49 $objSubView->assignobj($this); 50 $objSubView->display($this->tpl_mainpage); 53 $objView->assignobj($this); 54 $objView->display($this->tpl_mainpage); 55 } 56 57 /** 58 * モバイルページを初期化する. 59 * 60 * @return void 61 */ 62 function mobileInit() { 63 $this->tpl_mainpage = MOBILE_TEMPLATE_DIR . "frontparts/" 64 . BLOC_DIR . 'best5.tpl'; 65 } 66 67 /** 68 * Page のプロセス(モバイル). 69 * 70 * @return void 71 */ 72 function mobileProcess() { 73 $this->process(); 51 74 } 52 75
Note: See TracChangeset
for help on using the changeset viewer.
