diff options
Diffstat (limited to 'Autoload.php.in')
-rw-r--r-- | Autoload.php.in | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/Autoload.php.in b/Autoload.php.in new file mode 100644 index 0000000..e79223b --- /dev/null +++ b/Autoload.php.in @@ -0,0 +1,24 @@ +<?php +/* Inspired from Autoload from version 1.2 */ + +spl_autoload_register( + function ($class) + { + static $classes = NULL; + static $path = NULL; + + if ($classes === NULL) { + $classes = array( + ___CLASSLIST___ + ); + + $path = dirname(dirname(dirname(__FILE__))); + } + + $cn = strtolower($class); + + if (isset($classes[$cn])) { + require $path . $classes[$cn]; + } + } +); |