function heartbeat_delete_logs_confirm in Heartbeat 6.4
Same name and namespace in other branches
- 6.3 heartbeat.admin.inc \heartbeat_delete_logs_confirm()
Menu callback: confirm deleting of logs.
1 string reference to 'heartbeat_delete_logs_confirm'
- heartbeat_menu in ./
heartbeat.module - Implementation of hook_menu().
File
- ./
heartbeat.admin.inc, line 1478 - Admnistration tasks for heartbeat.
Code
function heartbeat_delete_logs_confirm() {
return confirm_form(array(), t('Are you sure you want to delete all activity logs?'), 'admin/settings/heartbeat/delete/confirm', t('This action can not be undone.'), t('Delete'), t('Cancel'));
}