summaryrefslogtreecommitdiffstats
path: root/system/database/DB_export.php
diff options
context:
space:
mode:
authoradmin <devnull@localhost>2006-09-24 22:15:03 +0200
committeradmin <devnull@localhost>2006-09-24 22:15:03 +0200
commit1716d5880b5b8d26db5608922f88adcf1ff8077c (patch)
treec74c28a7bc02a335447d9aefa69bc66672e32209 /system/database/DB_export.php
parentbb1d439a981023415569549d8b8c4987fa5b9b51 (diff)
Diffstat (limited to 'system/database/DB_export.php')
-rw-r--r--system/database/DB_export.php41
1 files changed, 41 insertions, 0 deletions
diff --git a/system/database/DB_export.php b/system/database/DB_export.php
new file mode 100644
index 000000000..195510d9d
--- /dev/null
+++ b/system/database/DB_export.php
@@ -0,0 +1,41 @@
+<?php if (!defined('BASEPATH')) exit('No direct script access allowed');
+/**
+ * Code Igniter
+ *
+ * An open source application development framework for PHP 4.3.2 or newer
+ *
+ * @package CodeIgniter
+ * @author Rick Ellis
+ * @copyright Copyright (c) 2006, pMachine, Inc.
+ * @license http://www.codeignitor.com/user_guide/license.html
+ * @link http://www.codeigniter.com
+ * @since Version 1.0
+ * @filesource
+ */
+
+// ------------------------------------------------------------------------
+
+/**
+ * DB Exporting Class
+ *
+ * @category Database
+ * @author Rick Ellis
+ * @link http://www.codeigniter.com/user_guide/database/
+ */
+class CI_DB_export {
+
+ /**
+ * Some function
+ *
+ * @access public
+ * @return integer
+ */
+ function something()
+ {
+ }
+
+ // --------------------------------------------------------------------
+
+}
+
+?> \ No newline at end of file