2014-04-02 17:30:58 +00:00
|
|
|
<?php
|
|
|
|
|
2016-01-19 14:03:50 +00:00
|
|
|
spl_autoload_register(function($class) {
|
2014-04-28 09:34:36 +00:00
|
|
|
|
2016-01-26 14:31:53 +00:00
|
|
|
$classPath = str_replace('Lychee\\', '', $class);
|
|
|
|
$classPath = str_replace('\\', DIRECTORY_SEPARATOR, $classPath);
|
2014-10-09 16:37:03 +00:00
|
|
|
|
2016-01-26 14:31:53 +00:00
|
|
|
$file = LYCHEE . 'php/' . $classPath . '.php';
|
2014-10-09 16:37:03 +00:00
|
|
|
|
2016-01-19 13:58:08 +00:00
|
|
|
if (file_exists($file)===true) require $file;
|
2014-04-28 09:34:36 +00:00
|
|
|
|
2016-01-19 14:03:50 +00:00
|
|
|
});
|
2014-04-12 12:09:27 +00:00
|
|
|
|
2016-01-24 21:14:20 +00:00
|
|
|
spl_autoload_register(function($class) {
|
|
|
|
|
2016-01-26 14:31:53 +00:00
|
|
|
$classPath = str_replace('\\', DIRECTORY_SEPARATOR, $class);
|
|
|
|
|
|
|
|
$file = LYCHEE . 'plugins/' . $classPath . '.php';
|
2016-01-24 21:14:20 +00:00
|
|
|
|
|
|
|
if (file_exists($file)===true) require $file;
|
|
|
|
|
|
|
|
});
|
|
|
|
|
2014-04-02 17:30:58 +00:00
|
|
|
?>
|