| Revision 15080,
849 bytes
checked in by nanasess, 19 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 | *
|
|---|
| 9 | * モバイルサイト/トップページ
|
|---|
| 10 | */
|
|---|
| 11 |
|
|---|
| 12 | require_once('./require.php');
|
|---|
| 13 |
|
|---|
| 14 | class 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.