2014-04-02 17:30:58 +00:00
|
|
|
<?php
|
|
|
|
|
2014-04-12 12:09:27 +00:00
|
|
|
###
|
|
|
|
# @name Autoload
|
|
|
|
# @author Tobias Reich
|
|
|
|
# @copyright 2014 by Tobias Reich
|
|
|
|
###
|
2014-04-02 17:30:58 +00:00
|
|
|
|
2014-04-12 12:09:27 +00:00
|
|
|
function lycheeAutoloader($class_name) {
|
2014-04-09 18:13:20 +00:00
|
|
|
require __DIR__ . '/modules/' . $class_name . '.php';
|
2014-04-02 17:30:58 +00:00
|
|
|
}
|
|
|
|
|
2014-04-12 12:09:27 +00:00
|
|
|
spl_autoload_register('lycheeAutoloader');
|
|
|
|
|
2014-04-02 17:30:58 +00:00
|
|
|
?>
|