You are here

function backup_migrate_destination::delete_confirm_message in Backup and Migrate 8.2

Same name and namespace in other branches
  1. 8.3 includes/destinations.inc \backup_migrate_destination::delete_confirm_message()
  2. 6.3 includes/destinations.inc \backup_migrate_destination::delete_confirm_message()
  3. 6.2 includes/destinations.inc \backup_migrate_destination::delete_confirm_message()
  4. 7.3 includes/destinations.inc \backup_migrate_destination::delete_confirm_message()
  5. 7.2 includes/destinations.inc \backup_migrate_destination::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

File

includes/destinations.inc, line 775

Class

backup_migrate_destination
A base class for creating destinations.

Code

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(),
  ));
}