summaryrefslogtreecommitdiff
path: root/framework/Log/EventLog/log_autoload.php
diff options
context:
space:
mode:
authorwei <>2006-01-04 08:10:56 +0000
committerwei <>2006-01-04 08:10:56 +0000
commit3628bfe141ef02299beb9514397cfc2c27a7dcb1 (patch)
treee1b09079bee418e45af6c49314a9f0fec5cf2012 /framework/Log/EventLog/log_autoload.php
parent0ebae0856a5ed24bcc1b01d13d8715288f39a08d (diff)
adding TEventLog using ezcLog from ezComponents.
Diffstat (limited to 'framework/Log/EventLog/log_autoload.php')
-rw-r--r--framework/Log/EventLog/log_autoload.php25
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'
+);
+?>