diff options
author | admin <devnull@localhost> | 2006-09-24 22:15:03 +0200 |
---|---|---|
committer | admin <devnull@localhost> | 2006-09-24 22:15:03 +0200 |
commit | 1716d5880b5b8d26db5608922f88adcf1ff8077c (patch) | |
tree | c74c28a7bc02a335447d9aefa69bc66672e32209 | |
parent | bb1d439a981023415569549d8b8c4987fa5b9b51 (diff) |
-rw-r--r-- | system/database/DB_export.php | 41 |
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 |