1<?php
2/**
3 * Autoloader definition for the Base component.
4 *
5 * @copyright Copyright (C) 2005-2009 eZ Systems AS. All rights reserved.
6 * @license http://ez.no/licenses/new_bsd New BSD License
7 * @version 1.8
8 * @filesource
9 * @package Base
10 */
11
12return array(
13    'ezcBaseException'                            => 'Base/exceptions/exception.php',
14    'ezcBaseFileException'                        => 'Base/exceptions/file_exception.php',
15    'ezcBaseAutoloadException'                    => 'Base/exceptions/autoload.php',
16    'ezcBaseDoubleClassRepositoryPrefixException' => 'Base/exceptions/double_class_repository_prefix.php',
17    'ezcBaseExtensionNotFoundException'           => 'Base/exceptions/extension_not_found.php',
18    'ezcBaseFileIoException'                      => 'Base/exceptions/file_io.php',
19    'ezcBaseFileNotFoundException'                => 'Base/exceptions/file_not_found.php',
20    'ezcBaseFilePermissionException'              => 'Base/exceptions/file_permission.php',
21    'ezcBaseFunctionalityNotSupportedException'   => 'Base/exceptions/functionality_not_supported.php',
22    'ezcBaseInitCallbackConfiguredException'      => 'Base/exceptions/init_callback_configured.php',
23    'ezcBaseInitInvalidCallbackClassException'    => 'Base/exceptions/invalid_callback_class.php',
24    'ezcBaseInvalidParentClassException'          => 'Base/exceptions/invalid_parent_class.php',
25    'ezcBasePropertyNotFoundException'            => 'Base/exceptions/property_not_found.php',
26    'ezcBasePropertyPermissionException'          => 'Base/exceptions/property_permission.php',
27    'ezcBaseSettingNotFoundException'             => 'Base/exceptions/setting_not_found.php',
28    'ezcBaseSettingValueException'                => 'Base/exceptions/setting_value.php',
29    'ezcBaseValueException'                       => 'Base/exceptions/value.php',
30    'ezcBaseWhateverException'                    => 'Base/exceptions/whatever.php',
31    'ezcBaseOptions'                              => 'Base/options.php',
32    'ezcBaseStruct'                               => 'Base/struct.php',
33    'ezcBase'                                     => 'Base/base.php',
34    'ezcBaseAutoloadOptions'                      => 'Base/options/autoload.php',
35    'ezcBaseConfigurationInitializer'             => 'Base/interfaces/configuration_initializer.php',
36    'ezcBaseExportable'                           => 'Base/interfaces/exportable.php',
37    'ezcBaseFeatures'                             => 'Base/features.php',
38    'ezcBaseFile'                                 => 'Base/file.php',
39    'ezcBaseFileFindContext'                      => 'Base/structs/file_find_context.php',
40    'ezcBaseInit'                                 => 'Base/init.php',
41    'ezcBaseMetaData'                             => 'Base/metadata.php',
42    'ezcBaseMetaDataPearReader'                   => 'Base/metadata/pear.php',
43    'ezcBaseMetaDataTarballReader'                => 'Base/metadata/tarball.php',
44    'ezcBasePersistable'                          => 'Base/interfaces/persistable.php',
45    'ezcBaseRepositoryDirectory'                  => 'Base/structs/repository_directory.php',
46);
47?>
48