function backup_migrate_location::url in Backup and Migrate 8.3
Same name and namespace in other branches
- 6.3 includes/locations.inc \backup_migrate_location::url()
- 7.3 includes/locations.inc \backup_migrate_location::url()
Get a url from the parts.
4 calls to backup_migrate_location::url()
- backup_migrate_destination_remote::get_display_location in includes/
destinations.inc - The location to display is the url without the password.
- backup_migrate_destination_remote::get_location in includes/
destinations.inc - The location is a URI so parse it and store the parts.
- backup_migrate_source_remote::get_display_location in includes/
sources.inc - The location to display is the url without the password.
- backup_migrate_source_remote::get_location in includes/
sources.inc - The location is a URI so parse it and store the parts.
1 method overrides backup_migrate_location::url()
- backup_migrate_location_remote::url in includes/
locations.inc - Get a url from the parts.
File
- includes/
locations.inc, line 375
Class
- backup_migrate_location
- A base class for creating locations.
Code
function url($hide_password = TRUE) {
return $this
->glue_url($this->dest_url, $hide_password);
}