You are here

function apachesolr_delete_index_confirm in Apache Solr Search 5.2

Same name and namespace in other branches
  1. 6 apachesolr.admin.inc \apachesolr_delete_index_confirm()
  2. 6.2 apachesolr.admin.inc \apachesolr_delete_index_confirm()

Confirmation form for "Delete the index" button

See also

apachesolr_delete_index_submit()

1 string reference to 'apachesolr_delete_index_confirm'
apachesolr_menu in ./apachesolr.module
Implementation of hook_menu().

File

./apachesolr.admin.inc, line 393
Administrative pages for the Apache Solr framework.

Code

function apachesolr_delete_index_confirm() {
  $form = array();
  return confirm_form($form, t('Are you sure you want to delete your search index and start re-indexing?'), 'admin/settings/apachesolr/index', NULL, t('Delete'), t('Cancel'));
}