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

26 lines
1.2 KiB
PHP

<?php
/**
* Autoloader definition for the UserInput component.
*
* @copyright Copyright (C) 2005-2008 eZ systems as. All rights reserved.
* @license http://ez.no/licenses/new_bsd New BSD License
* @version 1.3
* @filesource
* @package UserInput
*/
return array(
'ezcInputFormException' => 'UserInput/exceptions/exception.php',
'ezcInputFormFieldNotFoundException' => 'UserInput/exceptions/field_not_found.php',
'ezcInputFormInvalidDefinitionException' => 'UserInput/exceptions/invalid_definition.php',
'ezcInputFormNoValidDataException' => 'UserInput/exceptions/no_valid_data.php',
'ezcInputFormUnknownFieldException' => 'UserInput/exceptions/unknown_field.php',
'ezcInputFormValidDataAvailableException' => 'UserInput/exceptions/valid_data_available.php',
'ezcInputFormVariableMissingException' => 'UserInput/exceptions/input_variable_missing.php',
'ezcInputFormWrongInputSourceException' => 'UserInput/exceptions/wrong_input_source.php',
'ezcInputFilter' => 'UserInput/input_filter.php',
'ezcInputForm' => 'UserInput/input_form.php',
'ezcInputFormDefinitionElement' => 'UserInput/structs/definition_element.php',
);
?>