diff options
author | Thomas Lange <code@nerdmind.de> | 2018-02-03 20:21:13 +0100 |
---|---|---|
committer | Thomas Lange <code@nerdmind.de> | 2018-02-03 20:21:13 +0100 |
commit | 9b9ff136acf374434f10f1b0b8d18fdc6d17de43 (patch) | |
tree | 4402c3e57b9416e3496ad4194d09cd3ca48c3d3b /include/pagelets.php | |
parent | ca52e765e9dbd9407346b574cada9a93720e535d (diff) | |
download | bigpipe-9b9ff136acf374434f10f1b0b8d18fdc6d17de43.tar.gz bigpipe-9b9ff136acf374434f10f1b0b8d18fdc6d17de43.tar.xz bigpipe-9b9ff136acf374434f10f1b0b8d18fdc6d17de43.zip |
Move autoloader for classes into pagelets.php
This commit moves the "spl_autoload_register" function directly into the pagelets.php to reduce duplicate code within index.php and async.php.
Diffstat (limited to 'include/pagelets.php')
-rw-r--r-- | include/pagelets.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/pagelets.php b/include/pagelets.php index 62c3ed9..f6734e2 100644 --- a/include/pagelets.php +++ b/include/pagelets.php @@ -5,6 +5,14 @@ $DEBUGGING = TRUE; #=============================================================================== +# Autoload register for classes +#=============================================================================== +spl_autoload_register(function($classname) { + $classname = str_replace('\\', '/', $classname); + require "classes/{$classname}.php"; +}); + +#=============================================================================== # Check if BigPipe should be disabled #=============================================================================== if(isset($_GET['bigpipe']) AND $_GET['bigpipe'] === '0') { |