You are here

function searchindex_wipe_confirm in Search Index Wipe 7

Confirmation form.

1 string reference to 'searchindex_wipe_confirm'
searchindex_wipe_menu in ./searchindex_wipe.module
Implements hook_menu().

File

./searchindex_wipe.module, line 71
Enables wipe of search index.

Code

function searchindex_wipe_confirm($form, $form_state) {
  return confirm_form($form, t('Are you sure you want to clear Search index?'), "admin/config/search/settings", t('This action cannot be undone.'), t('Delete'), t('Cancel'));
}