You are here

function backup_migrate_location_remote::get_display_location in Backup and Migrate 6.3

Same name and namespace in other branches
  1. 8.3 includes/locations.inc \backup_migrate_location_remote::get_display_location()
  2. 7.3 includes/locations.inc \backup_migrate_location_remote::get_display_location()

The location to display is the url without the password.

Overrides backup_migrate_location::get_display_location

File

includes/locations.inc, line 433

Class

backup_migrate_location_remote
A base class for creating locations.

Code

function get_display_location() {
  return $this
    ->url(TRUE);
}