mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-01 20:29:29 +00:00
23 lines
877 B
PHP
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',
|
|
);
|
|
?>
|