source: branches/comu/html/mobile/contact/index.php @ 12197

Revision 12197, 828 bytes checked in by adati, 17 years ago (diff)

1.3.0正式版のマージ

  • Property svn:eol-style set to native
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.