You are here

function backup_migrate_destination::get_location in Backup and Migrate 8.2

Same name and namespace in other branches
  1. 6.2 includes/destinations.inc \backup_migrate_destination::get_location()
  2. 7.2 includes/destinations.inc \backup_migrate_destination::get_location()
6 calls to backup_migrate_destination::get_location()
backup_migrate_destination::get_display_location in includes/destinations.inc
backup_migrate_destination_email::edit_form in includes/destinations.email.inc
Get the form for the settings for this filter.
backup_migrate_destination_email::save_file in includes/destinations.email.inc
Save to (ie. email the file) to the email destination.
backup_migrate_destination_files::edit_form in includes/destinations.file.inc
Get the form for the settings for the files destination.
backup_migrate_destination_files::get_realpath in includes/destinations.file.inc
Get the file location.

... See full list

1 method overrides backup_migrate_destination::get_location()
backup_migrate_destination_remote::get_location in includes/destinations.inc
The location is a URI so parse it and store the parts.

File

includes/destinations.inc, line 558

Class

backup_migrate_destination
A base class for creating destinations.

Code

function get_location() {
  return @$this->location;
}