Changeset 19805 for branches/version-2_5-dev/data/class/module
- Timestamp:
- 2010/12/31 23:23:49 (15 years ago)
- Location:
- branches/version-2_5-dev/data/class/module
- Files:
-
- 2 edited
-
SC_Module.php (modified) (3 diffs)
-
SC_Module_Payment.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/version-2_5-dev/data/class/module/SC_Module.php
r19803 r19805 23 23 24 24 // {{{ requires 25 require_once CLASS_ FILE_PATH. 'SC_Query.php';26 require_once CLASS_EX_ FILE_PATH. 'db_extends/SC_DB_MasterData_Ex.php';25 require_once CLASS_REALDIR . 'SC_Query.php'; 26 require_once CLASS_EX_REALDIR . 'db_extends/SC_DB_MasterData_Ex.php'; 27 27 28 28 /** … … 121 121 */ 122 122 function getBasePath() { 123 return MODULE_ FILE_PATH. $this->getCode() . '/';123 return MODULE_REALDIR . $this->getCode() . '/'; 124 124 } 125 125 … … 251 251 */ 252 252 function log($msg, $data = null, $suffix = '') { 253 $path = DATA_ FILE_PATH. 'logs/' . $this->getCode() . "$suffix.log";253 $path = DATA_REALDIR . 'logs/' . $this->getCode() . "$suffix.log"; 254 254 GC_Utils::gfPrintLog($msg, $path); 255 255 -
branches/version-2_5-dev/data/class/module/SC_Module_Payment.php
r19803 r19805 22 22 */ 23 23 // {{{ requires 24 require_once CLASS_ FILE_PATH. 'module/SC_Module.php';24 require_once CLASS_REALDIR . 'module/SC_Module.php'; 25 25 26 26 /**
Note: See TracChangeset
for help on using the changeset viewer.
