function backup_migrate_destination::delete_file in Backup and Migrate 6.3
Same name and namespace in other branches
- 8.2 includes/destinations.inc \backup_migrate_destination::delete_file()
- 8.3 includes/destinations.inc \backup_migrate_destination::delete_file()
- 6.2 includes/destinations.inc \backup_migrate_destination::delete_file()
- 7.3 includes/destinations.inc \backup_migrate_destination::delete_file()
- 7.2 includes/destinations.inc \backup_migrate_destination::delete_file()
Delete the file with the given destination specific id.
1 method overrides backup_migrate_destination::delete_file()
- backup_migrate_destination_nodesquirrel::delete_file in includes/
destinations.nodesquirrel.inc - Delete from the NodeSquirrel destination.
File
- includes/
destinations.inc, line 814
Class
- backup_migrate_destination
- A base class for creating destinations.
Code
function delete_file($file_id) {
$this
->file_cache_clear();
$this
->_delete_file($file_id);
$this
->_delete_file($this
->_file_info_filename($file_id));
}