AutoLoader class handles auto loading of classes/objects.
Example:
Located in /common/mvblog_autoloader.php (line 41)
Create a new mvblog_AutoLoader object. It will automatically parse
your PHP ini include_path for paths in which is should look for objects. The default format it will look for is "CLASSNAME.php" (case-sensitive). The current directory is usually included in your include_path, so you won't have to add that. Add new paths using ->registerPath($path, $format).
The autoloader. It looks through all the paths and tries to find a file that contains the class to include.
This method should be called from an __autoload() function in your initializing code.
Add a new path to the list of paths where mvblog_AutoLoader will look for classes.
OPT_LOWERCASE
= 1
(line 42)
Documentation generated on Fri, 28 Dec 2007 13:17:38 +0100 by phpDocumentor 1.4.1