You are here

function tokenauth_reset_confirm in Token authentication 7

Same name and namespace in other branches
  1. 5 tokenauth.module \tokenauth_reset_confirm()
  2. 6.2 tokenauth.pages.inc \tokenauth_reset_confirm()
  3. 6 tokenauth.pages.inc \tokenauth_reset_confirm()

Menu callback: confirm reset tokens.

1 string reference to 'tokenauth_reset_confirm'
tokenauth_menu in ./tokenauth.module
Implements hook_menu().

File

./tokenauth.pages.inc, line 89
Provides administrative user interface for Tokenauth module.

Code

function tokenauth_reset_confirm() {
  return confirm_form(array(), t('Are you sure you want to reset all tokens?'), 'admin/settings/tokenauth', t('After the tokens have been reset, all users who use tokenised URLs will have to update them. This action cannot be undone.'), t('Reset tokens'), t('Cancel'));
}