aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/Zend/loader.php
diff options
context:
space:
mode:
authorNils Adermann <naderman@naderman.de>2009-06-06 23:20:10 +0000
committerNils Adermann <naderman@naderman.de>2009-06-06 23:20:10 +0000
commit711f482cb62070ab2340aa27c736a85cc6e8c518 (patch)
tree33148f99d5774c8af8693634874380bbf34cfb5d /phpBB/includes/Zend/loader.php
parente63b76b22af4ef2d67abb4799a225e0ce38787cf (diff)
downloadforums-711f482cb62070ab2340aa27c736a85cc6e8c518.tar
forums-711f482cb62070ab2340aa27c736a85cc6e8c518.tar.gz
forums-711f482cb62070ab2340aa27c736a85cc6e8c518.tar.bz2
forums-711f482cb62070ab2340aa27c736a85cc6e8c518.tar.xz
forums-711f482cb62070ab2340aa27c736a85cc6e8c518.zip
- Class loaders for both frameworks:
eZComponents through a loader object Zend Framework with an autoload function Example usage: require("{$phpbb_root_path}includes/ezcomponents/loader.$phpEx"); require("{$phpbb_root_path}includes/Zend/loader.$phpEx"); $loader = new phpbb_ezcomponents_loader(); $loader->load_component('search'); $handler = new ezcSearchZendLuceneHandler( '/tmp/lucene' ); git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9552 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/Zend/loader.php')
-rw-r--r--phpBB/includes/Zend/loader.php58
1 files changed, 58 insertions, 0 deletions
diff --git a/phpBB/includes/Zend/loader.php b/phpBB/includes/Zend/loader.php
new file mode 100644
index 0000000000..99a5543901
--- /dev/null
+++ b/phpBB/includes/Zend/loader.php
@@ -0,0 +1,58 @@
+<?php
+/**
+*
+* @package zend
+* @version $Id$
+* @copyright (c) 2005 phpBB Group
+* @license http://opensource.org/licenses/gpl-license.php GNU Public License
+*
+*/
+
+/**
+* @ignore
+*/
+if (!defined('IN_PHPBB'))
+{
+ exit;
+}
+
+if (version_compare(PHP_VERSION, '5.2.4', '<') || !function_exists('spl_autoload_register'))
+{
+ trigger_error('PHP >= 5.2.4 and spl_autoload_register() required', E_USER_ERROR);
+}
+
+/**
+* Autoload function for Zend framework classes
+*/
+function phpbb_zend_autoload($class_name)
+{
+ global $phpbb_root_path;
+
+ if (strpos($class_name, '_') !== false)
+ {
+ $path = str_replace('_', '/', $class_name) . '.php';
+ require("{$phpbb_root_path}includes/" . $path);
+ return true;
+ }
+}
+
+/**
+* @ignore
+*/
+// make sure Zend is in the include path
+ini_set( 'include_path', ini_get( 'include_path' ) . PATH_SEPARATOR . $phpbb_root_path . 'includes' );
+
+// check whether a regular autoload function already exists, so we can load it into the spl stack afterwards
+$register_autoload = false;
+if (function_exists('__autoload'))
+{
+ $register_autoload = true;
+}
+
+spl_autoload_register('phpbb_zend_autoload');
+
+// load the old autoload function into the spl stack if necessary
+if ($register_autoload)
+{
+ spl_autoload_register('__autoload');
+} \ No newline at end of file