source: branches/dev/html/mobile/contact/index.php @ 11460

Revision 11460, 716 bytes checked in by inoue, 17 years ago (diff)

モバイル版EC-CUBE

  • Property svn:eol-style set to native
Line 
1<?php
2require_once("../require.php");
3
4class LC_Page {
5    function LC_Page() {
6        $this->tpl_css = '/css/layout/contact/index.css';   // ¥á¥¤¥óCSS¥Ñ¥¹
7        $this->tpl_mainpage = 'contact/index.tpl';
8        $this->tpl_title = '¤ªÌ䤤¹ç¤ï¤»(ÆþÎÏ¥Ú¡¼¥¸)';
9        $this->tpl_page_category = 'contact';
10        global $arrPref;
11        $this->arrPref = $arrPref;
12    }
13}
14
15$conn = new SC_DBConn();
16$objPage = new LC_Page();
17$objView = new SC_SiteView();
18$CONF = sf_getBasisData();          // ŹÊÞ´ðËܾðÊó
19
20//----¡¡¥Ú¡¼¥¸É½¼¨
21$objView->assignobj($objPage);
22$objView->assignarray($CONF);
23$objView->display(SITE_FRAME);
24
25//------------------------------------------------------------------------------------------------------------------------------------------
26?>
Note: See TracBrowser for help on using the repository browser.