Revision 16094,
733 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
|
Line | |
---|
1 | <?php |
---|
2 | /* |
---|
3 | * Copyright(c) 2000-2007 LOCKON CO.,LTD. All Rights Reserved. |
---|
4 | * |
---|
5 | * http://www.lockon.co.jp/ |
---|
6 | */ |
---|
7 | require_once("../require.php"); |
---|
8 | |
---|
9 | class LC_Page { |
---|
10 | function LC_Page() { |
---|
11 | /** 必ず指定する **/ |
---|
12 | $this->tpl_mainpage = 'abouts/index.tpl'; // メインテンプレート |
---|
13 | $this->tpl_page_category = 'abouts'; |
---|
14 | $this->tpl_title = '当サイトについて'; |
---|
15 | } |
---|
16 | } |
---|
17 | |
---|
18 | $objPage = new LC_Page(); |
---|
19 | $objView = new SC_SiteView(); |
---|
20 | |
---|
21 | // レイアウトデザインを取得 |
---|
22 | $objPage = sfGetPageLayout($objPage, false, DEF_LAYOUT); |
---|
23 | |
---|
24 | $objView->assignobj($objPage); |
---|
25 | $objView->display(SITE_FRAME); |
---|
26 | |
---|
27 | //----------------------------------------------------------------------------------------------------------------------------------- |
---|
28 | ?> |
---|
Note: See
TracBrowser
for help on using the repository browser.