aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/class_loader.php
diff options
context:
space:
mode:
authorIgor Wiedler <igor@wiedler.ch>2011-11-19 01:20:22 +0100
committerIgor Wiedler <igor@wiedler.ch>2011-11-19 01:20:22 +0100
commitb7c4fb38de526eb446de20c0b8e54d7cf9108834 (patch)
treee5a09515fb73ca34e01736c681a733f40b2c89ba /phpBB/includes/class_loader.php
parent3df4b83cd3306013d78b93024905a67ecc97df25 (diff)
parent5f48f55cca5d0a6a2c51cdcc8a60b475354f50b1 (diff)
downloadforums-b7c4fb38de526eb446de20c0b8e54d7cf9108834.tar
forums-b7c4fb38de526eb446de20c0b8e54d7cf9108834.tar.gz
forums-b7c4fb38de526eb446de20c0b8e54d7cf9108834.tar.bz2
forums-b7c4fb38de526eb446de20c0b8e54d7cf9108834.tar.xz
forums-b7c4fb38de526eb446de20c0b8e54d7cf9108834.zip
Merge remote-tracking branch 'naderman/feature/extension-manager' into develop
* naderman/feature/extension-manager: (67 commits) [feature/extension-manager] Removing now unused acp_search code [feature/extension-manager] Split disabling extensions up into steps as well [feature/extension-manager] Add documentation on caching in ext finder [feature/extension-manager] Reference correct new module basenames in install [feature/extension-manager] Rename default methods to core methods on finder. [feature/extension-manager] Document what the class loader stores in cache [feature/extension-manager] Add docblock to cached paths map in class loader [feature/extension-manager] Clear up docs of extension related template changes [feature/extension-manager] Use "core files" instead of "global files" in docs [feature/extension-manager] Add docblocks to new search backend methods [feature/extension-manager] Add docblocks to new methods in functions_module [feature/extension-manager] Clarify comment on ext meta class instantiator [feature/extension-manager] Add more info on suffixes in extension finder [feature/extension-manager] Clarify is_dir parameter description [feature/extension-manager] Clarify class finding method docblock [feature/extension-manager] Correct default path comment & remove double strlen [feature/extension-manager] Fix "disbale" typo in comment [feature/extension-manager] Properly remove old ACP language loading code [feature/extension-manager] Support extensions in subdirectories of ext/ [feature/extension-manager] Add prefix to extension meta data / install classes ...
Diffstat (limited to 'phpBB/includes/class_loader.php')
-rw-r--r--phpBB/includes/class_loader.php42
1 files changed, 25 insertions, 17 deletions
diff --git a/phpBB/includes/class_loader.php b/phpBB/includes/class_loader.php
index a28d745983..bc268d342e 100644
--- a/phpBB/includes/class_loader.php
+++ b/phpBB/includes/class_loader.php
@@ -31,22 +31,32 @@ if (!defined('IN_PHPBB'))
*/
class phpbb_class_loader
{
- private $phpbb_root_path;
+ private $prefix;
+ private $path;
private $php_ext;
private $cache;
+
+ /**
+ * A map of looked up class names to paths relative to $this->path.
+ * This map is stored in cache and looked up if the cache is available.
+ *
+ * @var array
+ */
private $cached_paths = array();
/**
* Creates a new phpbb_class_loader, which loads files with the given
- * file extension from the given phpbb root path.
+ * file extension from the given path.
*
- * @param string $phpbb_root_path phpBB's root directory containing includes/
- * @param string $php_ext The file extension for PHP files
+ * @param string $prefix Required class name prefix for files to be loaded
+ * @param string $path Directory to load files from
+ * @param string $php_ext The file extension for PHP files
* @param phpbb_cache_driver_interface $cache An implementation of the phpBB cache interface.
*/
- public function __construct($phpbb_root_path, $php_ext = '.php', phpbb_cache_driver_interface $cache = null)
+ public function __construct($prefix, $path, $php_ext = '.php', phpbb_cache_driver_interface $cache = null)
{
- $this->phpbb_root_path = $phpbb_root_path;
+ $this->prefix = $prefix;
+ $this->path = $path;
$this->php_ext = $php_ext;
$this->set_cache($cache);
@@ -63,7 +73,7 @@ class phpbb_class_loader
{
if ($cache)
{
- $this->cached_paths = $cache->get('class_loader');
+ $this->cached_paths = $cache->get('class_loader_' . $this->prefix);
if ($this->cached_paths === false)
{
@@ -100,23 +110,21 @@ class phpbb_class_loader
*/
public function resolve_path($class)
{
- $path_prefix = $this->phpbb_root_path . 'includes/';
-
if (isset($this->cached_paths[$class]))
{
- return $path_prefix . $this->cached_paths[$class] . $this->php_ext;
+ return $this->path . $this->cached_paths[$class] . $this->php_ext;
}
- if (!preg_match('/phpbb_[a-zA-Z0-9_]+/', $class))
+ if (!preg_match('/^' . $this->prefix . '[a-zA-Z0-9_]+$/', $class))
{
return false;
}
- $parts = explode('_', substr($class, 6));
+ $parts = explode('_', substr($class, strlen($this->prefix)));
$dirs = '';
- for ($i = 0, $n = sizeof($parts); $i < $n && is_dir($path_prefix . $dirs . $parts[$i]); $i++)
+ for ($i = 0, $n = sizeof($parts); $i < $n && is_dir($this->path . $dirs . $parts[$i]); $i++)
{
$dirs .= $parts[$i] . '/';
}
@@ -129,7 +137,7 @@ class phpbb_class_loader
$relative_path = $dirs . implode(array_slice($parts, $i, sizeof($parts) - $i), '_');
- if (!file_exists($path_prefix . $relative_path . $this->php_ext))
+ if (!file_exists($this->path . $relative_path . $this->php_ext))
{
return false;
}
@@ -137,10 +145,10 @@ class phpbb_class_loader
if ($this->cache)
{
$this->cached_paths[$class] = $relative_path;
- $this->cache->put('class_loader', $this->cached_paths);
+ $this->cache->put('class_loader_' . $this->prefix, $this->cached_paths);
}
- return $path_prefix . $relative_path . $this->php_ext;
+ return $this->path . $relative_path . $this->php_ext;
}
/**
@@ -150,7 +158,7 @@ class phpbb_class_loader
*/
public function load_class($class)
{
- if (substr($class, 0, 6) === 'phpbb_')
+ if (substr($class, 0, strlen($this->prefix)) === $this->prefix)
{
$path = $this->resolve_path($class);