source: branches/feature-module-update/html/require.php @ 15529

Revision 15529, 2.6 KB checked in by nanasess, 17 years ago (diff)

暫定 commit

  • Property svn:keywords set to Id
  • Property svn:mime-type set to application/x-httpd-php; charset=UTF-8
Line 
1<?php
2/*
3 * Copyright(c) 2000-2007 LOCKON CO.,LTD. All Rights Reserved.
4 *
5 * http://www.lockon.co.jp/
6 */
7
8$include_dir = realpath(dirname( __FILE__));
9require_once($include_dir . "/define.php");
10if (!defined("CLASS_PATH")) {
11    /** クラスパス */
12    define("CLASS_PATH", $include_dir . HTML2DATA_DIR . "class/");
13}
14require_once($include_dir . HTML2DATA_DIR. "conf/conf.php");
15require_once($include_dir . HTML2DATA_DIR . "include/module.inc");
16require_once(CLASS_PATH . "util_extends/GC_Utils_Ex.php");
17require_once(CLASS_PATH . "util_extends/SC_Utils_Ex.php");
18require_once(CLASS_PATH . "db_extends/SC_DB_MasterData_Ex.php");
19require_once(CLASS_PATH . "db_extends/SC_DB_DBFactory_Ex.php");
20//require_once($include_dir . HTML2DATA_DIR . "lib/glib.php");
21//require_once($include_dir . HTML2DATA_DIR . "lib/slib.php");
22require_once(CLASS_PATH . "SC_View.php");
23require_once(CLASS_PATH . "SC_DbConn.php");
24require_once(CLASS_PATH . "SC_Session.php");
25require_once(CLASS_PATH . "SC_Query.php");
26require_once(CLASS_PATH . "SC_SelectSql.php");
27require_once(CLASS_PATH . "SC_CheckError.php");
28require_once(CLASS_PATH . "SC_PageNavi.php");
29require_once(CLASS_PATH . "SC_Date.php");
30require_once(CLASS_PATH . "SC_Image.php");
31require_once(CLASS_PATH . "SC_UploadFile.php");
32require_once(CLASS_PATH . "SC_SiteInfo.php");
33require_once(CLASS_PATH . "GC_SendMail.php");
34require_once(CLASS_PATH . "SC_FormParam.php");
35require_once(CLASS_PATH . "SC_CartSession.php");
36require_once(CLASS_PATH . "SC_SiteSession.php");
37require_once(CLASS_PATH . "SC_CampaignSession.php");
38require_once(CLASS_PATH . "SC_Customer.php");
39require_once(CLASS_PATH . "SC_Cookie.php");
40require_once(CLASS_PATH . "SC_Page.php");
41require_once(CLASS_PATH . "SC_Pdf.php");
42require_once(CLASS_PATH . "GC_MobileUserAgent.php");
43require_once(CLASS_PATH . "GC_MobileEmoji.php");
44require_once(CLASS_PATH . "helper_extends/SC_Helper_PageLayout_Ex.php");
45require_once(CLASS_PATH . "helper_extends/SC_Helper_DB_Ex.php");
46require_once(CLASS_PATH . "helper_extends/SC_Helper_Session_Ex.php");
47
48// セッションハンドラ開始
49//$objSession = new SC_Helper_Session_Ex();
50
51// アップデートで取得したPHPを読み出す
52SC_Utils_Ex::sfLoadUpdateModule();
53
54// 携帯端末の場合は mobile 以下へリダイレクトする。
55if (GC_MobileUserAgent::isMobile()) {
56    if (preg_match('|^' . URL_DIR . '(.*)$|', $_SERVER['REQUEST_URI'], $matches)) {
57        $path = $matches[1];
58    } else {
59        $path = '';
60    }
61    header("Location: " . URL_DIR . "mobile/$path");
62    exit;
63}
64
65// 絵文字変換 (除去) フィルターを組み込む。
66ob_start(array('GC_MobileEmoji', 'handler'));
67?>
Note: See TracBrowser for help on using the repository browser.