function backup_migrate_destination::load_file in Backup and Migrate 8.3
Same name and namespace in other branches
- 8.2 includes/destinations.inc \backup_migrate_destination::load_file()
- 6.3 includes/destinations.inc \backup_migrate_destination::load_file()
- 6.2 includes/destinations.inc \backup_migrate_destination::load_file()
- 7.3 includes/destinations.inc \backup_migrate_destination::load_file()
- 7.2 includes/destinations.inc \backup_migrate_destination::load_file()
Load the file with the given destination specific id and return as a backup_file object.
1 call to backup_migrate_destination::load_file()
- backup_migrate_destination::load_files_info in includes/
destinations.inc - Load up the file's metadata from the accompanying .info file if applicable.
5 methods override backup_migrate_destination::load_file()
- backup_migrate_destination_browser_upload::load_file in includes/
destinations.browser.inc - File load destination callback.
- backup_migrate_destination_files::load_file in includes/
destinations.file.inc - File load destination callback.
- backup_migrate_destination_ftp::load_file in includes/
destinations.ftp.inc - Load from the ftp destination.
- backup_migrate_destination_nodesquirrel::load_file in includes/
destinations.nodesquirrel.inc - Load from the NodeSquirrel destination.
- backup_migrate_destination_s3::load_file in includes/
destinations.s3.inc - Load from the s3 destination.
File
- includes/
destinations.inc, line 821
Class
- backup_migrate_destination
- A base class for creating destinations.
Code
function load_file($file_id) {
// This must be overriden.
return NULL;
}