You are here

function backup_migrate_location::delete_confirm_message in Backup and Migrate 8.3

Same name and namespace in other branches
  1. 6.3 includes/locations.inc \backup_migrate_location::delete_confirm_message()
  2. 7.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 the message to send to the user when confirming the deletion of the item.

File

includes/locations.inc, line 214

Class

backup_migrate_location
A base class for creating locations.

Code

function delete_confirm_message() {
  return t('Are you sure you want to delete the %name?', array(
    '%name' => $this
      ->get_name(),
  ));
}