function backup_migrate_destination::get_name in Backup and Migrate 7.2
Same name and namespace in other branches
- 8.2 includes/destinations.inc \backup_migrate_destination::get_name()
- 6.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.
1 method overrides backup_migrate_destination::get_name()
- backup_migrate_destination_nodesquirrel::get_name in includes/
destinations.nodesquirrel.inc - Get the destination name. Provide a default.
File
- includes/
destinations.inc, line 564
Class
- backup_migrate_destination
- A base class for creating destinations.
Code
function get_name() {
return @$this->name;
}