diff options
Diffstat (limited to 'framework/Log/EventLog/log_autoload.php')
-rw-r--r-- | framework/Log/EventLog/log_autoload.php | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/framework/Log/EventLog/log_autoload.php b/framework/Log/EventLog/log_autoload.php new file mode 100644 index 00000000..06e981bc --- /dev/null +++ b/framework/Log/EventLog/log_autoload.php @@ -0,0 +1,25 @@ +<?php +/** + * Autoloader definition for the Translation component. + * + * @copyright Copyright (C) 2005, 2006 eZ systems as. All rights reserved. + * @license http://ez.no/licenses/new_bsd New BSD License + * @version //autogentag// + * @filesource + * @package EventLog + */ + +return array( + 'ezcLog' => 'EventLog/log.php', + 'ezcLogMap' => 'EventLog/map.php', + 'ezcLogContext' => 'EventLog/context.php', + 'ezcLogMessage' => 'EventLog/log_message.php', + 'ezcLogWriter' => 'EventLog/interfaces/writer.php', + 'ezcLogWriterFile' => 'EventLog/writers/writer_file.php', + 'ezcLogWriterUnixFile' => 'EventLog/writers/writer_unix_file.php', + 'ezcLogWriterDatabase' => 'EventLog/writers/writer_database.php', + 'ezcLogFilter' => 'EventLog/structs/log_filter.php', + 'ezcLogFileException' => 'EventLog/exceptions/file_exception.php', + 'ezcLogWriterException'=> 'EventLog/exceptions/writer_exception.php' +); +?> |