Browse Source

Merge pull request #14442 from nextcloud/tech-debt/noid/remove-app-classpath

Remove not used appinfo/classpath.php check
pull/14398/head
Roeland Jago Douma 8 years ago
committed by GitHub
parent
commit
c67507d33b
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 17
      lib/base.php

17
lib/base.php

@ -456,20 +456,6 @@ class OC {
return \OC::$server->getConfig()->getSystemValue('session_lifetime', 60 * 60 * 24);
}
public static function loadAppClassPaths() {
foreach (OC_App::getEnabledApps() as $app) {
$appPath = OC_App::getAppPath($app);
if ($appPath === false) {
continue;
}
$file = $appPath . '/appinfo/classpath.php';
if (file_exists($file)) {
require_once $file;
}
}
}
/**
* Try to set some values to the required Nextcloud default
*/
@ -905,9 +891,6 @@ class OC {
\OC::$server->getEventLogger()->start('handle_request', 'Handle request');
$systemConfig = \OC::$server->getSystemConfig();
// load all the classpaths from the enabled apps so they are available
// in the routing files of each app
OC::loadAppClassPaths();
// Check if Nextcloud is installed or in maintenance (update) mode
if (!$systemConfig->getValue('installed', false)) {

Loading…
Cancel
Save