You are here

function backup_migrate_profile::delete_confirm_message in Backup and Migrate 8.3

Same name and namespace in other branches
  1. 8.2 includes/profiles.inc \backup_migrate_profile::delete_confirm_message()
  2. 6.3 includes/profiles.inc \backup_migrate_profile::delete_confirm_message()
  3. 6.2 includes/profiles.inc \backup_migrate_profile::delete_confirm_message()
  4. 7.3 includes/profiles.inc \backup_migrate_profile::delete_confirm_message()
  5. 7.2 includes/profiles.inc \backup_migrate_profile::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/profiles.inc, line 365

Class

backup_migrate_profile
A profile class for crud operations.

Code

function delete_confirm_message() {
  return t('Are you sure you want to delete the profile %name? Any schedules using this profile will be disabled.', array(
    '%name' => $this
      ->get('name'),
  ));
}