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