public function backup_migrate_profile::delete_confirm_message in Backup and Migrate 7.3
Same name and namespace in other branches
- 8.2 includes/profiles.inc \backup_migrate_profile::delete_confirm_message()
- 8.3 includes/profiles.inc \backup_migrate_profile::delete_confirm_message()
- 6.3 includes/profiles.inc \backup_migrate_profile::delete_confirm_message()
- 6.2 includes/profiles.inc \backup_migrate_profile::delete_confirm_message()
- 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 392
Class
- backup_migrate_profile
- A profile class for crud operations.
Code
public 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'),
));
}