Changeset 19805 for branches/version-2_5-dev/data/require_base.php
- Timestamp:
- 2010/12/31 23:23:49 (15 years ago)
- File:
-
- 1 edited
-
branches/version-2_5-dev/data/require_base.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/version-2_5-dev/data/require_base.php
r19803 r19805 22 22 */ 23 23 24 if (!defined("DATA_ FILE_PATH")) {25 define("DATA_ FILE_PATH", HTML_FILE_PATH. HTML2DATA_DIR);24 if (!defined("DATA_REALDIR")) { 25 define("DATA_REALDIR", HTML_REALDIR . HTML2DATA_DIR); 26 26 } 27 27 28 28 // アプリケーション初期化処理 29 require_once(DATA_ FILE_PATH. "app_initial.php");29 require_once(DATA_REALDIR . "app_initial.php"); 30 30 31 31 // 各種クラス読み込み 32 require_once(DATA_ FILE_PATH. "require_classes.php");32 require_once(DATA_REALDIR . "require_classes.php"); 33 33 34 34 // インストール中で無い場合、 … … 38 38 39 39 // セッションハンドラ開始 40 require_once CLASS_EX_ FILE_PATH. 'helper_extends/SC_Helper_Session_Ex.php';40 require_once CLASS_EX_REALDIR . 'helper_extends/SC_Helper_Session_Ex.php'; 41 41 $objSession = new SC_Helper_Session_Ex(); 42 42 43 43 // セッション初期化・開始 44 require_once CLASS_ FILE_PATH. 'session/SC_SessionFactory.php';44 require_once CLASS_REALDIR . 'session/SC_SessionFactory.php'; 45 45 $sessionFactory = SC_SessionFactory::getInstance(); 46 46 $sessionFactory->initSession(); 47 47 48 48 // プラグインを読み込む 49 //require_once(DATA_ FILE_PATH. 'require_plugin.php');49 //require_once(DATA_REALDIR . 'require_plugin.php'); 50 50 } 51 51 ?>
Note: See TracChangeset
for help on using the changeset viewer.
