lychee/php/autoload.php

15 lines
237 B
PHP
Raw Normal View History

2014-04-02 17:30:58 +00:00
<?php
###
# @name Autoload
# @author Tobias Reich
# @copyright 2014 by Tobias Reich
###
2014-04-02 17:30:58 +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
}
spl_autoload_register('lycheeAutoloader');
2014-04-02 17:30:58 +00:00
?>