Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoeland Jago Douma <rullzer@owncloud.com>2016-05-13 12:11:01 +0300
committerRoeland Jago Douma <rullzer@owncloud.com>2016-05-13 12:11:01 +0300
commita037c10c88b417ca009a8c863d392213be21f999 (patch)
tree610dc2d2ddd03c2358cf1911671179621e16a091 /lib/autoloader.php
parent5a5a5b203290e67035aea93eb832c703278380d3 (diff)
All \OC\ classes are handled by the composer autoloader
Diffstat (limited to 'lib/autoloader.php')
-rw-r--r--lib/autoloader.php17
1 files changed, 0 insertions, 17 deletions
diff --git a/lib/autoloader.php b/lib/autoloader.php
index ad76dd362bb..9cc573c0997 100644
--- a/lib/autoloader.php
+++ b/lib/autoloader.php
@@ -102,23 +102,6 @@ class Autoloader {
}
} elseif (strpos($class, 'OC_') === 0) {
$paths[] = \OC::$SERVERROOT . '/lib/private/legacy/' . strtolower(str_replace('_', '/', substr($class, 3)) . '.php');
- } elseif (strpos($class, 'OC\\') === 0) {
- $split = explode('\\', $class, 3);
-
- if (count($split) === 3) {
- $split[1] = strtolower($split[1]);
-
- if ($split[1] === 'core') {
- // Covered by PSR-4 autoloader
- } else if ($split[1] === 'settings') {
- // Covered by PSR-4 autoloader
- } else {
- $paths[] = \OC::$SERVERROOT . '/lib/private/' . $split[1] . '/' . strtolower(str_replace('\\', '/', $split[2])) . '.php';
- }
-
- } else {
- $paths[] = \OC::$SERVERROOT . '/lib/private/' . strtolower(str_replace('\\', '/', $split[1])) . '.php';
- }
} elseif (strpos($class, 'OCP\\') === 0) {
$paths[] = \OC::$SERVERROOT . '/lib/public/' . strtolower(str_replace('\\', '/', substr($class, 4)) . '.php');
} elseif (strpos($class, 'OCA\\') === 0) {