function backup_migrate_location::get_location in Backup and Migrate 6.3
Same name and namespace in other branches
- 8.3 includes/locations.inc \backup_migrate_location::get_location()
- 7.3 includes/locations.inc \backup_migrate_location::get_location()
11 calls to backup_migrate_location::get_location()
- 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::confirm_destination in includes/
destinations.file.inc - Check that a destination is valid.
- 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.
3 methods override backup_migrate_location::get_location()
- backup_migrate_destination_remote::get_location in includes/
destinations.inc - The location is a URI so parse it and store the parts.
- backup_migrate_location_remote::get_location in includes/
locations.inc - The location is a URI so parse it and store the parts.
- backup_migrate_source_remote::get_location in includes/
sources.inc - The location is a URI so parse it and store the parts.
File
- includes/
locations.inc, line 141
Class
- backup_migrate_location
- A base class for creating locations.
Code
function get_location() {
return @$this->location;
}