function backup_migrate_destination::get_remote in Backup and Migrate 8.3
Same name and namespace in other branches
- 6.3 includes/destinations.inc \backup_migrate_destination::get_remote()
- 7.3 includes/destinations.inc \backup_migrate_destination::get_remote()
Get a boolean representing if the destination is remote or local.
File
- includes/
destinations.inc, line 1056
Class
- backup_migrate_destination
- A base class for creating destinations.
Code
function get_remote() {
return $this
->op('remote backup');
}