|
|
|
@ -322,15 +322,15 @@ class OC |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public static function loadAppClassPaths() |
|
|
|
|
{ |
|
|
|
|
foreach(OC_APP::getEnabledApps() as $app) { |
|
|
|
|
$file = OC_App::getAppPath($app).'/appinfo/classpath.php'; |
|
|
|
|
if(file_exists($file)) { |
|
|
|
|
require_once $file; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
public static function loadAppClassPaths() |
|
|
|
|
{ |
|
|
|
|
foreach(OC_APP::getEnabledApps() as $app) { |
|
|
|
|
$file = OC_App::getAppPath($app).'/appinfo/classpath.php'; |
|
|
|
|
if(file_exists($file)) { |
|
|
|
|
require_once $file; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public static function init() |
|
|
|
@ -550,9 +550,9 @@ class OC |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// load all the classpaths from the enabled apps so they are available |
|
|
|
|
// in the routing files of each app |
|
|
|
|
OC::loadAppClassPaths(); |
|
|
|
|
// load all the classpaths from the enabled apps so they are available |
|
|
|
|
// in the routing files of each app |
|
|
|
|
OC::loadAppClassPaths(); |
|
|
|
|
|
|
|
|
|
try { |
|
|
|
|
OC::getRouter()->match(OC_Request::getPathInfo()); |
|
|
|
|