Revision 15099,
1007 bytes
checked in by Yammy, 16 years ago
(diff) |
UTF-8変換済みファイルインポート
1.3.4ベース
|
Line | |
---|
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/order/index.css'; // メインCSSパス |
---|
14 | /** 必ず指定する **/ |
---|
15 | $this->tpl_mainpage = 'order/index.tpl'; // メインテンプレート |
---|
16 | $this->tpl_page_category = 'order'; |
---|
17 | $this->tpl_title = '特定商取引に関する法律'; |
---|
18 | } |
---|
19 | } |
---|
20 | |
---|
21 | $objPage = new LC_Page(); |
---|
22 | $objView = new SC_SiteView(); |
---|
23 | $objQuery = new SC_Query(); |
---|
24 | |
---|
25 | // レイアウトデザインを取得 |
---|
26 | $objPage = sfGetPageLayout($objPage, false, DEF_LAYOUT); |
---|
27 | |
---|
28 | $arrRet = $objQuery->getall("SELECT * FROM dtb_baseinfo",array()); |
---|
29 | $objPage->arrRet = $arrRet[0]; |
---|
30 | $objPage->arrPref = $arrPref; |
---|
31 | |
---|
32 | $objView->assignobj($objPage); |
---|
33 | $objView->display(SITE_FRAME); |
---|
34 | //----------------------------------------------------------------------------------------------------------------------------------- |
---|
35 | ?> |
---|
Note: See
TracBrowser
for help on using the repository browser.