tpl_mainpage = 'guide/usage.tpl'; // メインテンプレート $this->tpl_title = 'ご利用方法'; } /** * Page のプロセス(モバイル). * * @return void */ function mobileProcess() { switch (@$_GET['page']) { case '1': case '2': case '3': case '4': $this->tpl_mainpage = 'guide/usage' . $_GET['page'] . '.tpl'; break; } // レイアウトデザインを取得 $objLayout = new SC_Helper_PageLayout_Ex(); $objLayout->sfGetPageLayout($this, false, DEF_LAYOUT); $objView = new SC_MobileView(); $objView->assignobj($this); $objView->display(SITE_FRAME); } /** * デストラクタ. * * @return void */ function destroy() { parent::destroy(); } } ?>