From 5a7b994e59306519574ce7aaa004f08d7d47ee05 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Thu, 18 Feb 2016 19:32:06 -0800 Subject: siteinfo regression with Zotlabs\Project - add an autoloader --- boot.php | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) (limited to 'boot.php') diff --git a/boot.php b/boot.php index 29f1788b6..4f58c4139 100755 --- a/boot.php +++ b/boot.php @@ -45,7 +45,6 @@ require_once('include/Contact.php'); require_once('include/account.php'); require_once('include/AccessList.php'); -require_once('Zotlabs/Project/System.php'); define ( 'PLATFORM_NAME', 'hubzilla' ); define ( 'RED_VERSION', trim(file_get_contents('version.inc'))); @@ -625,6 +624,21 @@ function startup() { } } + +class ZotlabsAutoloader { + static public function loader($className) { + $filename = str_replace('\\', '/', $className) . ".php"; + if (file_exists($filename)) { + include($filename); + if (class_exists($className)) { + return TRUE; + } + } + return FALSE; + } +} + + /** * class: App * @@ -855,6 +869,9 @@ class App { $this->register_template_engine($k); } } + + spl_autoload_register('ZotlabsAutoloader::loader'); + } function get_baseurl($ssl = false) { -- cgit v1.2.3