- Timestamp:
- 2007/09/28 03:48:51 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/feature-module-update/html/mobile/contact/index.php
r15532 r16131 1 1 <?php 2 2 /** 3 * 3 * 4 4 * Copyright(c) 2000-2007 LOCKON CO.,LTD. All Rights Reserved. 5 5 * 6 6 * http://www.lockon.co.jp/ 7 * 7 * 8 * 9 * モバイルサイト/お問い合わせ 8 10 */ 11 12 // {{{ requires 9 13 require_once("../require.php"); 14 require_once(CLASS_PATH . "page_extends/contact/LC_Page_Contact_Ex.php"); 10 15 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 } 16 // }}} 17 // {{{ generate page 21 18 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 //------------------------------------------------------------------------------------------------------------------------------------------ 19 $objPage = new LC_Page_Contact_Ex(); 20 $objPage->mobileInit(); 21 $objPage->mobileProcess(); 22 register_shutdown_function(array($objPage, "destroy")); 33 23 ?>
Note: See TracChangeset
for help on using the changeset viewer.