source: branches/feature-module-zeus/html/mobile/index.php @ 15438

Revision 15438, 774 bytes checked in by naka, 17 years ago (diff)
  • Property svn:eol-style set to native
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 */
11require_once('./require.php');
12
13class LC_Page {
14    function LC_Page() {
15        /** ɬ¤ºÊѹ¹¤¹¤ë **/
16        $this->tpl_mainpage = 'top.tpl';    // ¥á¥¤¥ó¥Æ¥ó¥×¥ì¡¼¥È
17    }
18}
19
20$objPage = new LC_Page();
21$conn = new SC_DBConn();
22$objCustomer = new SC_Customer();
23
24// ¥ì¥¤¥¢¥¦¥È¥Ç¥¶¥¤¥ó¤ò¼èÆÀ
25//$objPage = sfGetPageLayout($objPage, false, 'index.php');
26
27$objView = new SC_MobileView();
28$objView->assign("isLogin", $objCustomer->isLoginSuccess());
29$objView->assignobj($objPage);
30$objView->display(SITE_FRAME);
31
32//-----------------------------------------------------------------------------------------------------------------------------------
33?>
Note: See TracBrowser for help on using the repository browser.