public function backup_migrate_destination::_save_file in Backup and Migrate 7.3
Same name and namespace in other branches
- 8.2 includes/destinations.inc \backup_migrate_destination::_save_file()
- 8.3 includes/destinations.inc \backup_migrate_destination::_save_file()
- 6.3 includes/destinations.inc \backup_migrate_destination::_save_file()
- 6.2 includes/destinations.inc \backup_migrate_destination::_save_file()
- 7.2 includes/destinations.inc \backup_migrate_destination::_save_file()
Save the given file to the destination.
2 calls to backup_migrate_destination::_save_file()
- backup_migrate_destination::save_file in includes/
destinations.inc - Save the given file to the destination.
- backup_migrate_destination::save_file_info in includes/
destinations.inc - Save the file metadata.
3 methods override backup_migrate_destination::_save_file()
- backup_migrate_destination_files::_save_file in includes/
destinations.file.inc - File save destination callback.
- backup_migrate_destination_ftp::_save_file in includes/
destinations.ftp.inc - Save to the ftp destination.
- backup_migrate_destination_s3::_save_file in includes/
destinations.s3.inc - Save to to the s3 destination.
File
- includes/
destinations.inc, line 833
Class
- backup_migrate_destination
- A base class for creating destinations.
Code
public function _save_file($file, $settings) {
// This must be overriden.
return $file;
}