| Revision 11846,
775 bytes
checked in by uehara, 19 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 | */ |
|---|
| 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.