function backup_migrate_location::get_display_location in Backup and Migrate 6.3
Same name and namespace in other branches
- 8.3 includes/locations.inc \backup_migrate_location::get_display_location()
- 7.3 includes/locations.inc \backup_migrate_location::get_display_location()
4 methods override backup_migrate_location::get_display_location()
- backup_migrate_destination_nodesquirrel::get_display_location in includes/
destinations.nodesquirrel.inc - backup_migrate_destination_remote::get_display_location in includes/
destinations.inc - The location to display is the url without the password.
- backup_migrate_location_remote::get_display_location in includes/
locations.inc - The location to display is the url without the password.
- backup_migrate_source_remote::get_display_location in includes/
sources.inc - The location to display is the url without the password.
File
- includes/
locations.inc, line 145
Class
- backup_migrate_location
- A base class for creating locations.
Code
function get_display_location() {
return $this
->get_location();
}