diff options
author | Thomas Mueller <thomas.mueller@tmit.eu> | 2013-01-26 12:45:50 +0100 |
---|---|---|
committer | Thomas Mueller <thomas.mueller@tmit.eu> | 2013-01-26 12:45:50 +0100 |
commit | 2cc77759aa78e3b2228a827014ba4292c55edcdf (patch) | |
tree | d5c08c613e33714d28955561da68390da4ed037a /lib | |
parent | af4411e33d7a5dc8acde11a9dc88d1dc72dea0ec (diff) | |
download | nextcloud-server-2cc77759aa78e3b2228a827014ba4292c55edcdf.tar.gz nextcloud-server-2cc77759aa78e3b2228a827014ba4292c55edcdf.zip |
lookup for OCA classes in all apps folders
Diffstat (limited to 'lib')
-rw-r--r-- | lib/base.php | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/lib/base.php b/lib/base.php index f1a60a17739..aff3e1d5a11 100644 --- a/lib/base.php +++ b/lib/base.php @@ -96,7 +96,14 @@ class OC } elseif (strpos($className, 'OCP\\') === 0) { $path = 'public/' . strtolower(str_replace('\\', '/', substr($className, 3)) . '.php'); } elseif (strpos($className, 'OCA\\') === 0) { - $path = 'apps/' . strtolower(str_replace('\\', '/', substr($className, 3)) . '.php'); + foreach(self::$APPSROOTS as $appDir) { + $path = $appDir['path'] . '/' . strtolower(str_replace('\\', '/', substr($className, 3)) . '.php'); + $fullPath = stream_resolve_include_path($path); + if (file_exists($fullPath)) { + require_once $fullPath; + return false; + } + } } elseif (strpos($className, 'Sabre_') === 0) { $path = str_replace('_', '/', $className) . '.php'; } elseif (strpos($className, 'Symfony\\Component\\Routing\\') === 0) { |