Changeset 195 for trunk/trax/data

Show
Ignore:
Timestamp:
04/03/06 16:27:26 (6 years ago)
Author:
haas
Message:

docs, test trax_generator

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/trax/data/config/environment.php

    r192 r195  
    171171} 
    172172 
    173 ############################################## 
    174 # Auto include model / controller / other app specific libs files 
    175 ############################################## 
     173/** 
     174 *  Automatically load a file containing a specified class 
     175 * 
     176 *  Given a class name, derive the name of the file containing that 
     177 *  class then load it. 
     178 *  @param string class_name  Name of the class required 
     179 */ 
    176180function __autoload($class_name) { 
    177181    $file = Inflector::underscore($class_name).".php";