source: branches/rel/html/mobile/magazine/index.php @ 12157

Revision 12157, 752 bytes checked in by uehara, 17 years ago (diff)
Line 
1<?php
2/**
3 *
4 * Copyright(c) 2000-2007 LOCKON CO.,LTD. All Rights Reserved.
5 *
6 * http://www.lockon.co.jp/
7 *
8 *
9 * ¥á¥ë¥Þ¥¬ÅÐÏ¿¡¦²ò½ü¡¡¥È¥Ã¥×¥Ú¡¼¥¸
10 */
11
12require_once('../require.php');
13
14class LC_Page {
15    function LC_Page() {
16        /** ɬ¤ºÊѹ¹¤¹¤ë **/
17        $this->tpl_mainpage = 'magazine/index.tpl';
18        $this->tpl_title .= '¥á¥ë¥Þ¥¬ÅÐÏ¿¡¦²ò½ü';
19    }
20}
21
22$objPage = new LC_Page();
23$objPage->arrForm = $_POST;
24
25// ¥ì¥¤¥¢¥¦¥È¥Ç¥¶¥¤¥ó¤ò¼èÆÀ
26$objPage = sfGetPageLayout($objPage, false, DEF_LAYOUT);
27
28$objView = new SC_MobileView();
29$objView->assignobj($objPage);
30$objView->display(SITE_FRAME);
31
32//-----------------------------------------------------------------------------------------------------------------------------------
33?>
Note: See TracBrowser for help on using the repository browser.