summaryrefslogtreecommitdiff
path: root/system/config/view.php
diff options
context:
space:
mode:
Diffstat (limited to 'system/config/view.php')
-rw-r--r--system/config/view.php25
1 files changed, 25 insertions, 0 deletions
diff --git a/system/config/view.php b/system/config/view.php
new file mode 100644
index 0000000..b6a25b1
--- /dev/null
+++ b/system/config/view.php
@@ -0,0 +1,25 @@
+<?php defined('SYSPATH') OR die('No direct access allowed.');
+/**
+ * View Config
+ *
+ * @package Kohana
+ * @author Kohana Team
+ * @copyright (c) 2007-2009 Kohana Team
+ * @license http://kohanaphp.com/license
+ */
+
+/**
+ * Allowed non-php view types. Most file extensions are supported.
+ * Do not forget to add a valid MIME type in mimes.php
+ */
+$config['allowed_filetypes'] = array
+(
+ 'gif',
+ 'jpg', 'jpeg',
+ 'png',
+ 'tif', 'tiff',
+ 'swf',
+ 'htm', 'html',
+ 'css',
+ 'js'
+);