public function backup_migrate_item::revert_confirm_message in Backup and Migrate 7.3
Same name and namespace in other branches
- 8.3 includes/crud.inc \backup_migrate_item::revert_confirm_message()
- 6.3 includes/crud.inc \backup_migrate_item::revert_confirm_message()
The message to send to the user when confirming the deletion of the item.
File
- includes/
crud.inc, line 837 - 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.
Code
public 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'),
));
}