You are here

function backup_migrate_destination_remote::set_location in Backup and Migrate 6.3

Same name and namespace in other branches
  1. 8.2 includes/destinations.inc \backup_migrate_destination_remote::set_location()
  2. 8.3 includes/destinations.inc \backup_migrate_destination_remote::set_location()
  3. 6.2 includes/destinations.inc \backup_migrate_destination_remote::set_location()
  4. 7.3 includes/destinations.inc \backup_migrate_destination_remote::set_location()
  5. 7.2 includes/destinations.inc \backup_migrate_destination_remote::set_location()

Return the location with the password.

Overrides backup_migrate_location::set_location

File

includes/destinations.inc, line 1068

Class

backup_migrate_destination_remote
A base class for creating destinations.

Code

function set_location($location) {
  $this->location = $location;
  $this
    ->set_url($location);
}