Revision 15078,
888 bytes
checked in by nanasess, 16 years ago
(diff) |
r15064 から svn cp
とりあえず暫定コミット.
- UTF-8 に変更
- slib.php, glib.php のクラス化
- LC_Page の抽象化(一部)
|
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 | require_once("../require.php");
|
---|
10 |
|
---|
11 | class LC_Page {
|
---|
12 | function LC_Page() {
|
---|
13 | $this->tpl_css = '/css/layout/contact/index.css'; // メインCSSパス
|
---|
14 | $this->tpl_mainpage = 'contact/index.tpl';
|
---|
15 | $this->tpl_title = 'お問い合わせ(入力ページ)';
|
---|
16 | $this->tpl_page_category = 'contact';
|
---|
17 | global $arrPref;
|
---|
18 | $this->arrPref = $arrPref;
|
---|
19 | }
|
---|
20 | }
|
---|
21 |
|
---|
22 | $conn = new SC_DBConn();
|
---|
23 | $objPage = new LC_Page();
|
---|
24 | $objView = new SC_MobileView();
|
---|
25 | $CONF = sf_getBasisData(); // 店舗基本情報
|
---|
26 |
|
---|
27 | //---- ページ表示
|
---|
28 | $objView->assignobj($objPage);
|
---|
29 | $objView->assignarray($CONF);
|
---|
30 | $objView->display(SITE_FRAME);
|
---|
31 |
|
---|
32 | //------------------------------------------------------------------------------------------------------------------------------------------
|
---|
33 | ?> |
---|
Note: See
TracBrowser
for help on using the repository browser.