You are here

function tokenauth_user_reset_confirm in Token authentication 5

Same name and namespace in other branches
  1. 6.2 tokenauth.pages.inc \tokenauth_user_reset_confirm()
  2. 6 tokenauth.pages.inc \tokenauth_user_reset_confirm()
  3. 7 tokenauth.pages.inc \tokenauth_user_reset_confirm()

Menu callback: confirm reset users token.

1 string reference to 'tokenauth_user_reset_confirm'
tokenauth_menu in ./tokenauth.module
Implementation of hook_menu().

File

./tokenauth.module, line 168

Code

function tokenauth_user_reset_confirm() {
  global $user;
  return confirm_form(array(), t('Are you sure you want to reset your token?'), "user/{$user->uid}/tokenauth", t('After the token has been reset all your tokenised URLs will have to be updated. This action cannot be undone.'), t('Reset token'), t('Cancel'));
}