public function backup_migrate_location::get_name in Backup and Migrate 7.3
Same name and namespace in other branches
- 8.3 includes/locations.inc \backup_migrate_location::get_name()
- 6.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 a 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.
File
- includes/
locations.inc, line 137
Class
- backup_migrate_location
- A base class for creating locations.
Code
public function get_name() {
return @$this->name;
}