function tokenauth_reset_confirm in Token authentication 5
Same name and namespace in other branches
- 6.2 tokenauth.pages.inc \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.module, line 136
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 has been reset all users who use tokenised URLs will have to update them. This action cannot be undone.'), t('Reset tokens'), t('Cancel'));
}