public function backup_migrate_destination::delete_confirm_message in Backup and Migrate 7.3
Same name and namespace in other branches
- 8.2 includes/destinations.inc \backup_migrate_destination::delete_confirm_message()
- 8.3 includes/destinations.inc \backup_migrate_destination::delete_confirm_message()
- 6.3 includes/destinations.inc \backup_migrate_destination::delete_confirm_message()
- 6.2 includes/destinations.inc \backup_migrate_destination::delete_confirm_message()
- 7.2 includes/destinations.inc \backup_migrate_destination::delete_confirm_message()
Get a message to send to the user when confirming the deletion of the item.
Overrides backup_migrate_location::delete_confirm_message
File
- includes/
destinations.inc, line 1094
Class
- backup_migrate_destination
- A base class for creating destinations.
Code
public function delete_confirm_message() {
return t('Are you sure you want to delete the destination %name? Backup files already saved to this destination will not be deleted.', array(
'%name' => $this
->get_name(),
));
}