Changeset 16203
- Timestamp:
- 2007/10/01 11:35:19 (16 years ago)
- Location:
- branches/feature-module-update
- Files:
-
- 2 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/feature-module-update/html/mobile/products/search.php
r15532 r16203 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 *8 7 * 9 * モバイルサイト/商品検索フォーム 8 * 9 * モバイルサイト/商品検索 10 10 */ 11 11 12 require_once('../require.php'); 12 // {{{ requires 13 require_once("../require.php"); 14 require_once(CLASS_PATH . "page_extends/products/LC_Page_Products_Search_Ex.php"); 13 15 14 class LC_Page { 15 function LC_Page() { 16 /** 必ず指定する **/ 17 $this->tpl_mainpage = 'products/search.tpl'; // メインテンプレート 18 $this->tpl_title = '商品検索'; 19 } 20 } 16 // }}} 17 // {{{ generate page 21 18 22 $objPage = new LC_Page(); 23 $objView = new SC_MobileView(); 24 25 // レイアウトデザインを取得 26 $objPage = sfGetPageLayout($objPage, false, DEF_LAYOUT); 27 28 $objView->assignobj($objPage); 29 $objView->display(SITE_FRAME); 30 31 //----------------------------------------------------------------------------------------------------------------------------------- 19 $objPage = new LC_Page_Products_Search_Ex(); 20 $objPage->mobileInit(); 21 $objPage->mobileProcess(); 22 register_shutdown_function(array($objPage, "destroy")); 32 23 ?>
Note: See TracChangeset
for help on using the changeset viewer.