source: branches/version-2/html/mobile/require.php @ 17118

Revision 17118, 3.8 KB checked in by adachi, 16 years ago (diff)

共有SSL対応

  • Property svn:keywords set to Id
  • Property svn:mime-type set to text/x-httpd-php; charset=UTF-8
Line 
1<?php
2/**
3 *
4 * This file is part of EC-CUBE
5 *
6 * Copyright(c) 2000-2007 LOCKON CO.,LTD. All Rights Reserved.
7 *
8 * http://www.lockon.co.jp/
9 *
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License
12 * as published by the Free Software Foundation; either version 2
13 * of the License, or (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
23
24 */
25$include_dir = realpath(dirname( __FILE__));
26require_once($include_dir . "/../define.php");
27if (!defined("CLASS_PATH")) {
28    /** クラスパス */
29    define("CLASS_PATH", $include_dir . "/.." . HTML2DATA_DIR . "class/");
30}
31
32if (!defined("CLASS_EX_PATH")) {
33    /** クラスパス */
34    define("CLASS_EX_PATH", $include_dir . "/.." . HTML2DATA_DIR . "class_extends/");
35}
36
37if (!defined("CACHE_PATH")) {
38    /** キャッシュ生成ディレクトリ */
39    define("CACHE_PATH", $include_dir . "/.." . HTML2DATA_DIR . "cache/");
40}
41require_once(CLASS_EX_PATH . "SC_Initial_Mobile_Ex.php");
42// アプリケーション初期化処理
43$objInit = new SC_Initial_Mobile_Ex();
44$objInit->init();
45
46require_once($include_dir . "/.." . HTML2DATA_DIR . "include/module.inc");
47require_once(CLASS_EX_PATH . "util_extends/GC_Utils_Ex.php");
48require_once(CLASS_EX_PATH . "util_extends/SC_Utils_Ex.php");
49require_once(CLASS_EX_PATH . "db_extends/SC_DB_MasterData_Ex.php");
50require_once(CLASS_EX_PATH . "db_extends/SC_DB_DBFactory_Ex.php");
51require_once(CLASS_PATH . "SC_View.php");
52require_once(CLASS_PATH . "SC_DbConn.php");
53require_once(CLASS_PATH . "SC_Session.php");
54require_once(CLASS_PATH . "SC_Query.php");
55require_once(CLASS_PATH . "SC_SelectSql.php");
56require_once(CLASS_PATH . "SC_CheckError.php");
57require_once(CLASS_PATH . "SC_PageNavi.php");
58require_once(CLASS_PATH . "SC_Date.php");
59require_once(CLASS_PATH . "SC_Image.php");
60require_once(CLASS_PATH . "SC_UploadFile.php");
61require_once(CLASS_PATH . "SC_SiteInfo.php");
62require_once(CLASS_EX_PATH . "SC_SendMail_Ex.php");
63require_once(CLASS_PATH . "SC_FormParam.php");
64require_once(CLASS_PATH . "SC_CartSession.php");
65require_once(CLASS_PATH . "SC_SiteSession.php");
66require_once(CLASS_PATH . "SC_Customer.php");
67require_once(CLASS_PATH . "SC_Cookie.php");
68require_once(CLASS_PATH . "SC_Pdf.php");
69require_once(CLASS_PATH . "SC_MobileUserAgent.php");
70require_once(CLASS_PATH . "SC_MobileEmoji.php");
71require_once(CLASS_PATH . "SC_MobileImage.php");
72require_once(CLASS_EX_PATH . "helper_extends/SC_Helper_PageLayout_Ex.php");
73require_once(CLASS_EX_PATH . "helper_extends/SC_Helper_DB_Ex.php");
74require_once(CLASS_EX_PATH . "helper_extends/SC_Helper_Mobile_Ex.php");
75require_once(CLASS_EX_PATH . "helper_extends/SC_Helper_Session_Ex.php");
76require_once(CLASS_EX_PATH . "helper_extends/SC_Helper_Mail_Ex.php");
77include_once($include_dir . "/require_plugin.php");
78
79// セッションハンドラ開始
80$objSession = new SC_Helper_Session_Ex();
81
82// セッション初期化・開始
83require_once CLASS_PATH . 'session/SC_SessionFactory.php';
84$sessionFactory = SC_SessionFactory::getInstance();
85$sessionFactory->initSession();
86
87// モバイルサイト用の初期処理を実行する。
88if (!defined('SKIP_MOBILE_INIT')) {
89    $objMobile = new SC_Helper_Mobile_Ex();
90    $objMobile->sfMobileInit();
91}
92
93// Moba8対応(Moba8パラメータ引き継ぎ)
94if (function_exists("sfGetMoba8Param") == TRUE) {
95    sfGetMoba8Param($_GET['a8']);
96}
97
98?>
Note: See TracBrowser for help on using the repository browser.