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