You are here

function backup_migrate_destination::can_delete_file in Backup and Migrate 8.2

Same name and namespace in other branches
  1. 8.3 includes/destinations.inc \backup_migrate_destination::can_delete_file()
  2. 6.3 includes/destinations.inc \backup_migrate_destination::can_delete_file()
  3. 6.2 includes/destinations.inc \backup_migrate_destination::can_delete_file()
  4. 7.3 includes/destinations.inc \backup_migrate_destination::can_delete_file()
  5. 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 856

Class

backup_migrate_destination
A base class for creating destinations.

Code

function can_delete_file($file_id) {
  return $this
    ->op('delete');
}