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