function tokenauth_reset_confirm in Token authentication 6.2
Same name and namespace in other branches
- 5 tokenauth.module \tokenauth_reset_confirm()
- 6 tokenauth.pages.inc \tokenauth_reset_confirm()
- 7 tokenauth.pages.inc \tokenauth_reset_confirm()
Menu callback: confirm reset tokens.
1 string reference to 'tokenauth_reset_confirm'
- tokenauth_menu in ./
tokenauth.module - Implementation of hook_menu().
File
- ./
tokenauth.pages.inc, line 91 - 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'));
}