|
@@ -7,23 +7,20 @@
|
|
|
|
|
|
if (!defined('LYCHEE')) exit('Error: Direct access is not allowed!');
|
|
if (!defined('LYCHEE')) exit('Error: Direct access is not allowed!');
|
|
|
|
|
|
-function lycheeAutoloaderModules($class) {
|
|
|
|
|
|
+spl_autoload_register(function($class) {
|
|
|
|
|
|
$file = LYCHEE . 'php/modules/' . $class . '.php';
|
|
$file = LYCHEE . 'php/modules/' . $class . '.php';
|
|
|
|
|
|
if (file_exists($file)===true) require $file;
|
|
if (file_exists($file)===true) require $file;
|
|
|
|
|
|
-}
|
|
|
|
|
|
+});
|
|
|
|
|
|
-function lycheeAutoloaderAccess($class) {
|
|
|
|
|
|
+spl_autoload_register(function($class) {
|
|
|
|
|
|
$file = LYCHEE . 'php/access/' . $class . '.php';
|
|
$file = LYCHEE . 'php/access/' . $class . '.php';
|
|
|
|
|
|
if (file_exists($file)===true) require $file;
|
|
if (file_exists($file)===true) require $file;
|
|
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-spl_autoload_register('lycheeAutoloaderModules');
|
|
|
|
-spl_autoload_register('lycheeAutoloaderAccess');
|
|
|
|
|
|
+});
|
|
|
|
|
|
?>
|
|
?>
|