source: branches/feature-module-update/html/mobile/index.php @ 15079

Revision 15079, 849 bytes checked in by nanasess, 17 years ago (diff)

svn:mime-type application/x-httpd-php; charset=UTF-8 設定

  • Property svn:mime-type set to application/x-httpd-php; charset=UTF-8
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 = 'top.tpl';    // メインテンプレート
18    }
19}
20
21$objPage = new LC_Page();
22$conn = new SC_DBConn();
23$objCustomer = new SC_Customer();
24
25// レイアウトデザインを取得
26//$objPage = sfGetPageLayout($objPage, false, 'index.php');
27
28$objView = new SC_MobileView();
29$objView->assign("isLogin", $objCustomer->isLoginSuccess());
30$objView->assignobj($objPage);
31$objView->display(SITE_FRAME);
32
33//-----------------------------------------------------------------------------------------------------------------------------------
34?>
Note: See TracBrowser for help on using the repository browser.