|
@@ -1,13 +1,15 @@
|
|
|
<?php
|
|
|
|
|
|
-/**
|
|
|
- * @name Autoload
|
|
|
- * @author Tobias Reich
|
|
|
- * @copyright 2014 by Tobias Reich
|
|
|
- */
|
|
|
+###
|
|
|
+# @name Autoload
|
|
|
+# @author Tobias Reich
|
|
|
+# @copyright 2014 by Tobias Reich
|
|
|
+###
|
|
|
|
|
|
-function __autoload($class_name) {
|
|
|
+function lycheeAutoloader($class_name) {
|
|
|
require __DIR__ . '/modules/' . $class_name . '.php';
|
|
|
}
|
|
|
|
|
|
+spl_autoload_register('lycheeAutoloader');
|
|
|
+
|
|
|
?>
|