summaryrefslogtreecommitdiffstats
path: root/system/init/init_upload.php
diff options
context:
space:
mode:
Diffstat (limited to 'system/init/init_upload.php')
-rw-r--r--system/init/init_upload.php24
1 files changed, 24 insertions, 0 deletions
diff --git a/system/init/init_upload.php b/system/init/init_upload.php
new file mode 100644
index 000000000..495975c7a
--- /dev/null
+++ b/system/init/init_upload.php
@@ -0,0 +1,24 @@
+<?php if (!defined('BASEPATH')) exit('No direct script access allowed');
+
+/**
+ * Loads and instantiates file uploading class
+ *
+ * @access private called by the app controller
+ */
+
+$config = array();
+if ( ! class_exists('CI_Upload'))
+{
+ if (file_exists(APPPATH.'config/upload'.EXT))
+ {
+ include_once(APPPATH.'config/upload'.EXT);
+ }
+
+ require_once(BASEPATH.'libraries/Upload'.EXT);
+}
+
+$obj =& get_instance();
+$obj->upload = new CI_Upload($config);
+$obj->ci_is_loaded[] = 'upload';
+
+?> \ No newline at end of file