public function backup_migrate_location::delete_confirm_message in Backup and Migrate 7.3
Same name and namespace in other branches
- 8.3 includes/locations.inc \backup_migrate_location::delete_confirm_message()
- 6.3 includes/locations.inc \backup_migrate_location::delete_confirm_message()
Get the message to send to the user when confirming the deletion of the item.
Overrides backup_migrate_item::delete_confirm_message
1 method overrides backup_migrate_location::delete_confirm_message()
- 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.
File
- includes/
locations.inc, line 237
Class
- backup_migrate_location
- A base class for creating locations.
Code
public function delete_confirm_message() {
return t('Are you sure you want to delete the %name?', array(
'%name' => $this
->get_name(),
));
}