You are here

function backup_migrate_location::get_name in Backup and Migrate 8.3

Same name and namespace in other branches
  1. 6.3 includes/locations.inc \backup_migrate_location::get_name()
  2. 7.3 includes/locations.inc \backup_migrate_location::get_name()

Get the name of the item.

Overrides backup_migrate_item::get_name

2 calls to backup_migrate_location::get_name()
backup_migrate_destination::delete_confirm_message in includes/destinations.inc
Get the message to send to the user when confirming the deletion of the item.
backup_migrate_location::delete_confirm_message in includes/locations.inc
Get the message to send to the user when confirming the deletion of the item.
1 method overrides backup_migrate_location::get_name()
backup_migrate_destination_nodesquirrel::get_name in includes/destinations.nodesquirrel.inc
Get the destination name. Provide a default.

File

includes/locations.inc, line 129

Class

backup_migrate_location
A base class for creating locations.

Code

function get_name() {
  return @$this->name;
}