Merge pull request #1320 from owncloud/implements-1316-master

lookup for OCA classes in all apps folders
This commit is contained in:
Lukas Reschke 2013-01-26 05:20:15 -08:00
commit c9e25d3fab
1 changed files with 8 additions and 1 deletions

View File

@ -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) {