Ignore:
Timestamp:
2007/01/19 23:01:05 (20 years ago)
Author:
rebelt
Message:

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

  • トップページ
  • 商品閲覧
  • 商品検索
  • セッションIDチェック機能
  • 簡単ログイン補助機能
  • 絵文字変換機能
File:
1 edited

Legend:

Unmodified
Added
Removed
  • temp/branches/mobile/html/require.php

    r9552 r11398  
    3030require_once($include_dir . "/../data/class/SC_Page.php"); 
    3131require_once($include_dir . "/../data/class/SC_Pdf.php"); 
     32require_once($include_dir . "/../data/class/GC_MobileUserAgent.php"); 
     33require_once($include_dir . "/../data/class/GC_MobileEmoji.php"); 
    3234require_once($include_dir . "/../data/include/page_layout.inc"); 
    3335 
     
    3537sfLoadUpdateModule(); 
    3638 
     39// ·ÈÂÓüËö¤Î¾ì¹ç¤Ï mobile °Ê²¼¤Ø¥ê¥À¥¤¥ì¥¯¥È¤¹¤ë¡£ 
     40if (GC_MobileUserAgent::isMobile()) { 
     41    header("Location: " . URL_DIR . "mobile/"); 
     42    exit; 
     43} 
     44 
     45// ³¨Ê¸»úÊÑ´¹ (½üµî) ¥Õ¥£¥ë¥¿¡¼¤òÁȤ߹þ¤à¡£ 
     46ob_start(array('GC_MobileEmoji', 'handler')); 
    3747?> 
Note: See TracChangeset for help on using the changeset viewer.