13 lines
181 B
PHP
13 lines
181 B
PHP
<?php
|
|
|
|
/**
|
|
* @name Autoload
|
|
* @author Tobias Reich
|
|
* @copyright 2014 by Tobias Reich
|
|
*/
|
|
|
|
function __autoload($class_name) {
|
|
require './modules/' . $class_name . '.php';
|
|
}
|
|
|
|
?>
|