blob: 62aaa7667dfc4c1e0bc8cbdb6fe1ac860c53382a (
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
<?php
/**
*
* @package ezcomponents
* @version $Id$
* @copyright (c) 2005 phpBB Group
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
*/
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
/**
* eZ components class loader
* Replaces the autoload mechanism eZ Components normally use
* @package ezcomponents
*/
class phpbb_ezcomponents_loader
{
var $loaded;
/**
* Constructor which makes sure the PHP version requirement is met.
*/
function phpbb_ezcomponents_loader()
{
$this->loaded = array();
if (version_compare(PHP_VERSION, '5.2.1', '<'))
{
trigger_error('PHP >= 5.2.1 required', E_USER_ERROR);
}
}
/**
* Loads all classes of a particular component.
* The base component is always loaded first.
*
* @param $component string Lower case component name
*/
function load_component($component)
{
global $phpbb_root_path;
// don't allow loading the same component twice
if (isset($this->loaded[$component]) && $this->loaded[$component])
{
return;
}
// make sure base is always loaded first
if ($component != 'base' && !isset($this->loaded['base']))
{
$this->load_component('base');
}
$ezc_path = $phpbb_root_path . 'includes/ezcomponents/';
// retrieve the autoload list
$classes = include($ezc_path . ucfirst($component) . '/' . $component . '_autoload.php');
// include all files related to this component
foreach ($classes as $class => $path)
{
include($ezc_path . $path);
}
}
}
|