Changeset 230

Show
Ignore:
Timestamp:
02/06/07 13:34:34 (1 year ago)
Author:
mikey
Message:

added getCachePath()

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/config/php/config.php

    r161 r230  
    3030     
    3131    /** 
     32     * this method should return the path to the cache directory 
     33     * 
     34     * @return  string 
     35     */ 
     36    public static function getCachePath() 
     37    { 
     38        return realpath(dirname(__FILE__) . '/../../cache'); 
     39    } 
     40     
     41    /** 
    3242     * switch to use star files or not 
    3343     * 
     
    3646    public static function useStar() 
    3747    { 
    38         return true;#class_exists('StarClassRegistry', false); 
     48        return false;#true;#class_exists('StarClassRegistry', false); 
    3949    } 
    4050}