function backup_migrate_source_db::backup_to_file in Backup and Migrate 8.3
Same name and namespace in other branches
- 6.3 includes/sources.db.inc \backup_migrate_source_db::backup_to_file()
- 7.3 includes/sources.db.inc \backup_migrate_source_db::backup_to_file()
Backup from this source.
File
- includes/
sources.db.inc, line 144 - Functions to handle the direct to database destination.
Class
- backup_migrate_source_db
- A destination type for saving to a database server.
Code
function backup_to_file($file, $settings) {
$file
->push_type($this
->get_file_type_id());
//$this->lock_tables($settings);
// Switch to a different db if specified.
$success = $this
->_backup_db_to_file($file, $settings);
//$this->unlock_tables($settings);
return $success ? $file : FALSE;
}