source: temp/branches/mobile/html/mobile/index.php @ 11398

Revision 11398, 571 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 = 'top.tpl';    // ¥á¥¤¥ó¥Æ¥ó¥×¥ì¡¼¥È
12    }
13}
14
15$objPage = new LC_Page();
16$conn = new SC_DBConn();
17
18// ¥ì¥¤¥¢¥¦¥È¥Ç¥¶¥¤¥ó¤ò¼èÆÀ
19$objPage = sfGetPageLayout($objPage, false, 'index.php');
20
21$objView = new SC_SiteView();
22$objView->assignobj($objPage);
23$objView->display(SITE_FRAME);
24
25//-----------------------------------------------------------------------------------------------------------------------------------
26?>
Note: See TracBrowser for help on using the repository browser.