You are here

function backup_migrate_item::revert_confirm_message in Backup and Migrate 8.3

Same name and namespace in other branches
  1. 6.3 includes/crud.inc \backup_migrate_item::revert_confirm_message()
  2. 7.3 includes/crud.inc \backup_migrate_item::revert_confirm_message()

Get the message to send to the user when confirming the deletion of the item.

File

includes/crud.inc, line 836
CRUD functions for backup and migrate types (schedules, profiles etc.).

Class

backup_migrate_item
A base class for items which can be stored in the database, listed, edited, deleted etc.

Code

function revert_confirm_message() {
  return t('Are you sure you want to revert the !type %name back to the default settings?', array(
    '!type' => t($this->singular),
    '%name' => $this
      ->get('name'),
  ));
}