diff options
Diffstat (limited to 'app/Model')
-rw-r--r-- | app/Model/ConfigModel.php | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/app/Model/ConfigModel.php b/app/Model/ConfigModel.php index 945c5e6f..b45199fd 100644 --- a/app/Model/ConfigModel.php +++ b/app/Model/ConfigModel.php @@ -49,6 +49,20 @@ class ConfigModel extends SettingModel } /** + * Replace database file with uploaded one + * + * @access public + * @return boolean + */ + public function uploadDatabase($file) + { + + $this->db->closeConnection(); + $result = file_put_contents(DB_FILENAME, gzdecode(file_get_contents($file))); + return $result == false? false: true; + } + + /** * Get the Sqlite database size in bytes * * @access public |