You are here

function backup_migrate_source_remote::get_location in Backup and Migrate 6.3

Same name and namespace in other branches
  1. 8.3 includes/sources.inc \backup_migrate_source_remote::get_location()
  2. 7.3 includes/sources.inc \backup_migrate_source_remote::get_location()

The location is a URI so parse it and store the parts.

Overrides backup_migrate_location::get_location

1 call to backup_migrate_source_remote::get_location()
backup_migrate_source_db::switch_db in includes/sources.db.inc
Switch to the current database. Pass true to switch back to the previous db.

File

includes/sources.inc, line 190

Class

backup_migrate_source_remote
A base class for creating sources.

Code

function get_location() {
  return $this
    ->url(FALSE);
}