source: branches/feature-module-update/html/mobile/contact/index.php @ 15532

Revision 15532, 888 bytes checked in by nanasess, 17 years ago (diff)

svn:mime-type 修正

  • Property svn:keywords set to Id
  • Property svn:mime-type set to text/x-httpd-php; charset=UTF-8
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 */
9require_once("../require.php");
10
11class 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.