Files
FHC-Core/include/ezcomponents/autoload/url_autoload.php
T
Andreas Österreicher 0a8e90a8b3 EZ-Components
2009-02-17 15:27:43 +00:00

23 lines
877 B
PHP

<?php
/**
* Autoloader definition for the Url component.
*
* @copyright Copyright (C) 2005-2008 eZ systems as. All rights reserved.
* @license http://ez.no/licenses/new_bsd New BSD License
* @version 1.2.1
* @filesource
* @package Url
*/
return array(
'ezcUrlException' => 'Url/exceptions/url_exception.php',
'ezcUrlInvalidParameterException' => 'Url/exceptions/url_invalid_parameter_exception.php',
'ezcUrlNoConfigurationException' => 'Url/exceptions/url_no_configuration_exception.php',
'ezcUrlNotRegisteredException' => 'Url/exceptions/url_not_registered_exception.php',
'ezcUrl' => 'Url/url.php',
'ezcUrlConfiguration' => 'Url/url_configuration.php',
'ezcUrlCreator' => 'Url/url_creator.php',
'ezcUrlTools' => 'Url/url_tools.php',
);
?>