source: branches/feature-module-update/html/mobile/products/search.php @ 15078

Revision 15078, 782 bytes checked in by nanasess, 17 years ago (diff)

r15064 から svn cp
とりあえず暫定コミット.

  • UTF-8 に変更
  • slib.php, glib.php のクラス化
  • LC_Page の抽象化(一部)
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 *
9 * モバイルサイト/商品検索フォーム
10 */
11
12require_once('../require.php');
13
14class LC_Page {
15    function LC_Page() {
16        /** 必ず指定する **/
17        $this->tpl_mainpage = 'products/search.tpl';            // メインテンプレート
18        $this->tpl_title = '商品検索';
19    }
20}
21
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//-----------------------------------------------------------------------------------------------------------------------------------
32?>
Note: See TracBrowser for help on using the repository browser.