You are here

function elasticsearch_watchdog_filter_delete_confirm in Elasticsearch Connector 7.2

Same name and namespace in other branches
  1. 7 modules/elasticsearch_watchdog/elasticsearch_watchdog.admin.inc \elasticsearch_watchdog_filter_delete_confirm()

Confirm_form for deleting watchdog_docs from the index

See also

elasticsearch_watchdog_filter_delete_confirm_submit()

1 string reference to 'elasticsearch_watchdog_filter_delete_confirm'
elasticsearch_watchdog_menu in modules/elasticsearch_watchdog/elasticsearch_watchdog.module
Implements hook_menu().

File

modules/elasticsearch_watchdog/elasticsearch_watchdog.admin.inc, line 782
Created on Jan 06, 2014

Code

function elasticsearch_watchdog_filter_delete_confirm($form, &$form_state) {
  return confirm_form($form, t('Are you sure you want to delete the filtered logs from index?'), 'admin/reports/elasticlog', t('This action cannot be undone.'), t('Delete'), t('Cancel'));
}