summaryrefslogtreecommitdiff
path: root/system/messages/kohana
diff options
context:
space:
mode:
authorBharat Mediratta <bharat@menalto.com>2009-12-23 12:42:57 -0800
committerBharat Mediratta <bharat@menalto.com>2009-12-23 12:42:57 -0800
commit3e8e13bd2533ff7e3493b27c8a8587dfb65e1b26 (patch)
tree4b89142230e516b3d327f4e835edb49c76fa237f /system/messages/kohana
parent05c50a052348a4ae664e0b4ca475f9fb3228f24b (diff)
Updated Kohana to r4728
Diffstat (limited to 'system/messages/kohana')
-rw-r--r--system/messages/kohana/core.php37
1 files changed, 37 insertions, 0 deletions
diff --git a/system/messages/kohana/core.php b/system/messages/kohana/core.php
new file mode 100644
index 00000000..1361809b
--- /dev/null
+++ b/system/messages/kohana/core.php
@@ -0,0 +1,37 @@
+<?php defined('SYSPATH') OR die('No direct access allowed.');
+/**
+ * Core Kohana messages
+ *
+ * @package Core
+ * @author Kohana Team
+ * @copyright (c) 2009 Kohana Team
+ * @license http://kohanaphp.com/license
+ */
+$messages = array
+(
+ 'errors' => array
+ (
+ E_KOHANA => 'Framework Error',
+ E_PAGE_NOT_FOUND => 'Page Not Found',
+ E_DATABASE_ERROR => 'Database Error',
+ E_RECOVERABLE_ERROR => 'Recoverable Error',
+ E_ERROR => 'Fatal Error',
+ E_COMPILE_ERROR => 'Fatal Error',
+ E_CORE_ERROR => 'Fatal Error',
+ E_USER_ERROR => 'Fatal Error',
+ E_PARSE => 'Syntax Error',
+ E_WARNING => 'Warning Message',
+ E_COMPILE_WARNING => 'Warning Message',
+ E_CORE_WARNING => 'Warning Message',
+ E_USER_WARNING => 'Warning Message',
+ E_STRICT => 'Strict Mode Error',
+ E_NOTICE => 'Runtime Message',
+ E_USER_NOTICE => 'Runtime Message',
+ ),
+);
+
+// E_DEPRECATED is only defined in PHP >= 5.3.0
+if (defined('E_DEPRECATED'))
+{
+ $messages['errors'][E_DEPRECATED] = 'Deprecated';
+} \ No newline at end of file