public function backup_migrate_destination::get_remote in Backup and Migrate 7.3
Same name and namespace in other branches
- 8.3 includes/destinations.inc \backup_migrate_destination::get_remote()
- 6.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 1101
Class
- backup_migrate_destination
- A base class for creating destinations.
Code
public function get_remote() {
return $this
->op('remote backup');
}