source: branches/dev/html/mobile/magazine/index.php @ 11460

Revision 11460, 612 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 = 'magazine/index.tpl';
12        $this->tpl_title .= '¥á¥ë¥Þ¥¬ÅÐÏ¿¡¦²ò½ü';
13    }
14}
15
16$objPage = new LC_Page();
17$objPage->arrForm = $_POST;
18
19// ¥ì¥¤¥¢¥¦¥È¥Ç¥¶¥¤¥ó¤ò¼èÆÀ
20$objPage = sfGetPageLayout($objPage, false, DEF_LAYOUT);
21
22$objView = new SC_SiteView();
23$objView->assignobj($objPage);
24$objView->display(SITE_FRAME);
25
26//-----------------------------------------------------------------------------------------------------------------------------------
27?>
Note: See TracBrowser for help on using the repository browser.