function backup_migrate_destination::can_delete_file in Backup and Migrate 8.3
Same name and namespace in other branches
- 8.2 includes/destinations.inc \backup_migrate_destination::can_delete_file()
- 6.3 includes/destinations.inc \backup_migrate_destination::can_delete_file()
- 6.2 includes/destinations.inc \backup_migrate_destination::can_delete_file()
- 7.3 includes/destinations.inc \backup_migrate_destination::can_delete_file()
- 7.2 includes/destinations.inc \backup_migrate_destination::can_delete_file()
Determine if we can read the given file.
1 call to backup_migrate_destination::can_delete_file()
- backup_migrate_destination::get_file_links in includes/
destinations.inc - Get the action links for a file on a given destination.
File
- includes/
destinations.inc, line 1112
Class
- backup_migrate_destination
- A base class for creating destinations.
Code
function can_delete_file($file_id) {
return $this
->op('delete');
}