You are here

function backup_migrate_destination_remote::url in Backup and Migrate 8.2

Same name and namespace in other branches
  1. 6.2 includes/destinations.inc \backup_migrate_destination_remote::url()
  2. 7.2 includes/destinations.inc \backup_migrate_destination_remote::url()

Get a url from the parts.

2 calls to backup_migrate_destination_remote::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.

File

includes/destinations.inc, line 1034

Class

backup_migrate_destination_remote
A base class for creating destinations.

Code

function url($hide_password = TRUE) {
  return $this
    ->glue_url($this->dest_url, $hide_password);
}