You are here

function prev_next_reindex_confirm in Previous/Next API 7

Same name and namespace in other branches
  1. 6 prev_next.module \prev_next_reindex_confirm()
  2. 7.2 prev_next.admin.inc \prev_next_reindex_confirm()

@todo Please document this function.

See also

http://drupal.org/node/1354

1 string reference to 'prev_next_reindex_confirm'
prev_next_menu in ./prev_next.module
Implements hook_menu().

File

./prev_next.module, line 193

Code

function prev_next_reindex_confirm($form, &$form_state) {
  return confirm_form(array(), t('Are you sure you want to re-index Prev/Next?'), 'admin/config/system/prev_next', t('The entire Prev/Next index will be reset and rebuilt incrementally as cron runs. action cannot be undone.'), t('Re-index'), t('Cancel'));
}