Revision 16094,
798 bytes
checked in by adachi, 16 years ago
(diff) |
set property
|
-
Property svn:eol-style set to
LF
-
Property svn:keywords set to
Id
-
Property svn:mime-type set to
text/x-httpd-php; charset=UTF-8
|
Rev | Line | |
---|
[15099] | 1 | <?php |
---|
| 2 | /* |
---|
| 3 | * Copyright(c) 2000-2007 LOCKON CO.,LTD. All Rights Reserved. |
---|
| 4 | * |
---|
| 5 | * http://www.lockon.co.jp/ |
---|
| 6 | */ |
---|
| 7 | |
---|
| 8 | require_once("./require.php"); |
---|
| 9 | |
---|
| 10 | class LC_Page { |
---|
| 11 | function LC_Page() { |
---|
| 12 | /** 必ず変更する **/ |
---|
| 13 | $this->tpl_css = URL_DIR.'css/layout/index.css'; // メインCSSパス |
---|
| 14 | /** 必ず変更する **/ |
---|
| 15 | $this->tpl_mainpage = HTML_PATH . "user_data/templates/top.tpl"; // メインテンプレート |
---|
| 16 | } |
---|
| 17 | } |
---|
| 18 | |
---|
| 19 | $objPage = new LC_Page(); |
---|
| 20 | $conn = new SC_DBConn(); |
---|
| 21 | |
---|
| 22 | // レイアウトデザインを取得 |
---|
| 23 | $objPage = sfGetPageLayout($objPage, false, "index.php"); |
---|
| 24 | |
---|
| 25 | $objView = new SC_SiteView(); |
---|
| 26 | $objView->assignobj($objPage); |
---|
| 27 | $objView->display(SITE_FRAME); |
---|
| 28 | //----------------------------------------------------------------------------------------------------------------------------------- |
---|
| 29 | ?> |
---|
Note: See
TracBrowser
for help on using the repository browser.