function backup_migrate_destination::get_location in Backup and Migrate 6.2
Same name and namespace in other branches
- 8.2 includes/destinations.inc \backup_migrate_destination::get_location()
- 7.2 includes/destinations.inc \backup_migrate_destination::get_location()
7 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_filepath in includes/
destinations.file.inc - Get the filepath from the given file id.
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 568
Class
- backup_migrate_destination
- A base class for creating destinations.
Code
function get_location() {
return @$this->location;
}