You are here

function backup_migrate_destination::get_name in Backup and Migrate 8.2

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

Get the name of the item.

Overrides backup_migrate_item::get_name

2 calls to backup_migrate_destination::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_destination::edit_form in includes/destinations.inc
Get the edit form for the item.

File

includes/destinations.inc, line 542

Class

backup_migrate_destination
A base class for creating destinations.

Code

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