aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/libraries/ezcomponents/loader.php
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2009-10-04 18:13:59 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2009-10-04 18:13:59 +0000
commitbf8ac19eaa8d74f9dfd6d597190f5664e7339382 (patch)
treec3ad876736748e36cb9176a0248cc43badfc1d9a /phpBB/includes/libraries/ezcomponents/loader.php
parent3215bbf88864139dc8c7e9ac5773b1ea8a7e96c1 (diff)
downloadforums-bf8ac19eaa8d74f9dfd6d597190f5664e7339382.tar
forums-bf8ac19eaa8d74f9dfd6d597190f5664e7339382.tar.gz
forums-bf8ac19eaa8d74f9dfd6d597190f5664e7339382.tar.bz2
forums-bf8ac19eaa8d74f9dfd6d597190f5664e7339382.tar.xz
forums-bf8ac19eaa8d74f9dfd6d597190f5664e7339382.zip
Move trunk/phpBB to old_trunk/phpBB
git-svn-id: file:///svn/phpbb/trunk@10210 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/libraries/ezcomponents/loader.php')
-rw-r--r--phpBB/includes/libraries/ezcomponents/loader.php73
1 files changed, 0 insertions, 73 deletions
diff --git a/phpBB/includes/libraries/ezcomponents/loader.php b/phpBB/includes/libraries/ezcomponents/loader.php
deleted file mode 100644
index 62aaa7667d..0000000000
--- a/phpBB/includes/libraries/ezcomponents/loader.php
+++ /dev/null
@@ -1,73 +0,0 @@
-<?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);
- }
- }
-} \ No newline at end of file