Ignore:
Timestamp:
2010/12/31 23:23:49 (15 years ago)
Author:
Seasoft
Message:

#834(パラメータの定数名に「URL」を含むにもかかわらず、パスのみのものがある) 一部実装

Location:
branches/version-2_5-dev/data/class/module
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_5-dev/data/class/module/SC_Module.php

    r19803 r19805  
    2323 
    2424// {{{ requires 
    25 require_once CLASS_FILE_PATH . 'SC_Query.php'; 
    26 require_once CLASS_EX_FILE_PATH . 'db_extends/SC_DB_MasterData_Ex.php'; 
     25require_once CLASS_REALDIR . 'SC_Query.php'; 
     26require_once CLASS_EX_REALDIR . 'db_extends/SC_DB_MasterData_Ex.php'; 
    2727 
    2828/** 
     
    121121     */ 
    122122    function getBasePath() { 
    123         return MODULE_FILE_PATH . $this->getCode() . '/'; 
     123        return MODULE_REALDIR . $this->getCode() . '/'; 
    124124    } 
    125125 
     
    251251     */ 
    252252    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"; 
    254254        GC_Utils::gfPrintLog($msg, $path); 
    255255 
  • branches/version-2_5-dev/data/class/module/SC_Module_Payment.php

    r19803 r19805  
    2222 */ 
    2323// {{{ requires 
    24 require_once CLASS_FILE_PATH . 'module/SC_Module.php'; 
     24require_once CLASS_REALDIR . 'module/SC_Module.php'; 
    2525 
    2626/** 
Note: See TracChangeset for help on using the changeset viewer.