You are here

function download_count_clear_confirm in Download Count 7.3

Form to confirm clearing of the download_count_cache table.

1 string reference to 'download_count_clear_confirm'
download_count_menu in ./download_count.module
Implements hook_menu().

File

includes/download_count.settings.inc, line 200
Administrative page callbacks for the download_count module.

Code

function download_count_clear_confirm($form, &$form_state) {
  return confirm_form($form, t('Are you sure you want to clear the download count cache?'), 'admin/config/media/download-count', t('This action cannot be undone.'), t('Clear Cache'), t('Cancel'));
}