Browse Source

Allow disabling the global classpath in an autoloader

tags/v6.0.0alpha2
Robin Appelman 11 years ago
parent
commit
cac86bb4db
1 changed files with 19 additions and 3 deletions
  1. 19
    3
      lib/autoloader.php

+ 19
- 3
lib/autoloader.php View File

@@ -9,6 +9,8 @@
namespace OC;

class Autoloader {
private $useGlobalClassPath = true;

private $classPaths = array();

/**
@@ -21,6 +23,20 @@ class Autoloader {
$this->classPaths[$class] = $path;
}

/**
* disable the usage of the global classpath \OC::$CLASSPATH
*/
public function disableGlobalClassPath() {
$this->useGlobalClassPath = false;
}

/**
* enable the usage of the global classpath \OC::$CLASSPATH
*/
public function enableGlobalClassPath() {
$this->useGlobalClassPath = true;
}

/**
* Load the specified class
*
@@ -33,15 +49,15 @@ class Autoloader {
$paths = array();
if (array_key_exists($class, $this->classPaths)) {
$paths[] = $this->classPaths[$class];
} else if (array_key_exists($class, \OC::$CLASSPATH)) {
} else if ($this->useGlobalClassPath and array_key_exists($class, \OC::$CLASSPATH)) {
$paths[] = \OC::$CLASSPATH[$class];
/**
* @TODO: Remove this when necessary
* Remove "apps/" from inclusion path for smooth migration to mutli app dir
*/
if (strpos($path, 'apps/') === 0) {
if (strpos(\OC::$CLASSPATH[$class], 'apps/') === 0) {
\OC_Log::write('core', 'include path for class "' . $class . '" starts with "apps/"', \OC_Log::DEBUG);
$path = str_replace('apps/', '', $path);
$path = str_replace('apps/', '', \OC::$CLASSPATH[$class]);
}
} elseif (strpos($class, 'OC_') === 0) {
$paths[] = strtolower(str_replace('_', '/', substr($class, 3)) . '.php');

Loading…
Cancel
Save