You are here

function backup_migrate_destination::get_remote in Backup and Migrate 6.3

Same name and namespace in other branches
  1. 8.3 includes/destinations.inc \backup_migrate_destination::get_remote()
  2. 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 908

Class

backup_migrate_destination
A base class for creating destinations.

Code

function get_remote() {
  return $this
    ->op('remote backup');
}