Restore loadApp() autoload registration

Also changes the autoloader validRoots into a hashmap to try and reduce
duplicate entries
remotes/origin/db-empty-migrate
Robin McCorkell 9 years ago
parent 41e79675c3
commit 862afd80b3

@ -51,7 +51,9 @@ class Autoloader {
* @param string[] $validRoots
*/
public function __construct(array $validRoots) {
$this->validRoots = $validRoots;
foreach ($validRoots as $root) {
$this->validRoots[$root] = true;
}
}
/**
@ -60,7 +62,8 @@ class Autoloader {
* @param string $root
*/
public function addValidRoot($root) {
$this->validRoots[] = stream_resolve_include_path($root);
$root = stream_resolve_include_path($root);
$this->validRoots[$root] = true;
}
/**
@ -126,7 +129,7 @@ class Autoloader {
}
protected function isValidPath($fullPath) {
foreach ($this->validRoots as $root) {
foreach ($this->validRoots as $root => $true) {
if (substr($fullPath, 0, strlen($root) + 1) === $root . '/') {
return true;
}

@ -131,6 +131,7 @@ class OC_App {
*/
public static function loadApp($app, $checkUpgrade = true) {
self::$loadedApps[] = $app;
\OC::$loader->addValidRoot(self::getAppPath($app)); // in case someone calls loadApp() directly
if (is_file(self::getAppPath($app) . '/appinfo/app.php')) {
\OC::$server->getEventLogger()->start('load_app_' . $app, 'Load app: ' . $app);
if ($checkUpgrade and self::shouldUpgrade($app)) {

Loading…
Cancel
Save