-
Notifications
You must be signed in to change notification settings - Fork 99
/
app_initial.php
57 lines (48 loc) · 1.9 KB
/
app_initial.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<?php
/*
* This file is part of EC-CUBE
*
* Copyright(c) EC-CUBE CO.,LTD. All Rights Reserved.
*
* http://www.ec-cube.co.jp/
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
// Flexible SSLへの対応
if( isset($_SERVER['HTTP_X_FORWARDED_PROTO']) && 'https' == $_SERVER['HTTP_X_FORWARDED_PROTO'] ){
$_SERVER['HTTPS'] = 1;
$_SERVER['SERVER_PORT'] = 443;
}
if (!defined('CLASS_REALDIR')) {
/** クラスパス */
define('CLASS_REALDIR', DATA_REALDIR . "class/");
}
if (!defined('CLASS_EX_REALDIR')) {
/** クラスパス */
define('CLASS_EX_REALDIR', DATA_REALDIR . "class_extends/");
}
if (!defined('CACHE_REALDIR')) {
/** キャッシュ生成ディレクトリ */
define('CACHE_REALDIR', DATA_REALDIR . "cache/");
}
// クラスのオートローディングに対応するフックを入れるために、ここに入れる必要あり
require_once(CLASS_EX_REALDIR . 'helper_extends/SC_Helper_Plugin_Ex.php');
// クラスのオートローディングを定義する
require_once(CLASS_EX_REALDIR . 'SC_ClassAutoloader_Ex.php');
spl_autoload_register(array('SC_ClassAutoloader_Ex', 'autoload'));
SC_Helper_HandleError_Ex::load();
// アプリケーション初期化処理
$objInit = new SC_Initial_Ex();
$objInit->init();