Changeset 145

Show
Ignore:
Timestamp:
01/24/07 17:02:24 (2 years ago)
Author:
mikey
Message:

added getLogPath()

Files:

Legend:

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

    r119 r145  
    66{ 
    77    /** 
    8      * this method should return the path to you lib directory 
     8     * this method should return the path to the lib directory 
    99     *  
    1010     * By default its /path/to/stubbles/lib. 
     
    1616        return realpath(dirname(__FILE__) . '/../../lib'); 
    1717    } 
     18     
     19    /** 
     20     * this method should return the path to the log directory 
     21     *  
     22     * By default its /path/to/stubbles/log. 
     23     * 
     24     * @return  string 
     25     */ 
     26    public static function getLogPath() 
     27    { 
     28        return realpath(dirname(__FILE__) . '/../../log'); 
     29    } 
    1830} 
    1931?>