source: temp/branches/mobile/html/mobile/products/search.php @ 11398

Revision 11398, 597 bytes checked in by rebelt, 17 years ago (diff)

以下のモバイルサイト用ページ・機能を作成いたしました。

  • トップページ
  • 商品閲覧
  • 商品検索
  • セッションIDチェック機能
  • 簡単ログイン補助機能
  • 絵文字変換機能
  • Property svn:eol-style set to native
Line 
1<?php
2/**
3 * ¥â¥Ð¥¤¥ë¥µ¥¤¥È/¾¦Éʸ¡º÷¥Õ¥©¡¼¥à
4 */
5
6require_once('../require.php');
7
8class LC_Page {
9    function LC_Page() {
10        /** ɬ¤º»ØÄꤹ¤ë **/
11        $this->tpl_mainpage = 'products/search.tpl';            // ¥á¥¤¥ó¥Æ¥ó¥×¥ì¡¼¥È
12        $this->tpl_title = '¾¦Éʸ¡º÷';
13    }
14}
15
16$objPage = new LC_Page();
17$objView = new SC_SiteView();
18
19// ¥ì¥¤¥¢¥¦¥È¥Ç¥¶¥¤¥ó¤ò¼èÆÀ
20$objPage = sfGetPageLayout($objPage, false, DEF_LAYOUT);
21
22$objView->assignobj($objPage);
23$objView->display(SITE_FRAME);
24
25//-----------------------------------------------------------------------------------------------------------------------------------
26?>
Note: See TracBrowser for help on using the repository browser.