source: branches/dev/html/mobile/guide/charge.php @ 11460

Revision 11460, 596 bytes checked in by inoue, 17 years ago (diff)

モバイル版EC-CUBE

  • Property svn:eol-style set to native
Line 
1<?php
2/**
3 * ¥â¥Ð¥¤¥ë¥µ¥¤¥È/ÄÌ¿®ÎÁ¤Ë¤Ä¤¤¤Æ
4 */
5
6require_once('../require.php');
7
8class LC_Page {
9    function LC_Page() {
10        /** ɬ¤ºÊѹ¹¤¹¤ë **/
11        $this->tpl_mainpage = 'guide/charge.tpl';   // ¥á¥¤¥ó¥Æ¥ó¥×¥ì¡¼¥È
12        $this->tpl_title = 'ÄÌ¿®ÎÁ¤Ë¤Ä¤¤¤Æ';
13    }
14}
15
16$objPage = new LC_Page();
17
18// ¥ì¥¤¥¢¥¦¥È¥Ç¥¶¥¤¥ó¤ò¼èÆÀ
19$objPage = sfGetPageLayout($objPage, false, DEF_LAYOUT);
20
21$objView = new SC_SiteView();
22$objView->assignobj($objPage);
23$objView->display(SITE_FRAME);
24
25//-----------------------------------------------------------------------------------------------------------------------------------
26?>
Note: See TracBrowser for help on using the repository browser.