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

Revision 15080, 768 bytes checked in by nanasess, 17 years ago (diff)

svn properties 設定

  • svn:mime-type - application/x-httpd-php; charset=UTF-8
  • svn:keywords - Id
  • Property svn:keywords set to Id
  • 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 */
9require_once("../require.php");
10
11class LC_Page {
12    function LC_Page() {
13        /** 必ず指定する **/
14        $this->tpl_css = '';            // メインCSSパス
15        /** 必ず指定する **/
16        // メインテンプレート
17        $this->tpl_mainpage = 'unsupported/index.tpl';
18    }
19}
20
21$objPage = new LC_Page();
22$objView = new SC_MobileView();
23
24// レイアウトデザインを取得
25$objPage = sfGetPageLayout($objPage, false, DEF_LAYOUT);
26
27$objView->assignobj($objPage);
28$objView->display(SITE_FRAME);
29
30//-----------------------------------------------------------------------------------------------------------------------------------
31?>
Note: See TracBrowser for help on using the repository browser.