blob: 99a55439015c346737fbcbebb785ac19ed2121bf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
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');
}
|