function tokenauth_help in Token authentication 7
Same name and namespace in other branches
- 6.2 tokenauth.module \tokenauth_help()
- 6 tokenauth.module \tokenauth_help()
Implements hook_help().
File
- ./
tokenauth.module, line 74
Code
function tokenauth_help($path, $arg) {
switch ($path) {
// Main help for tokenauth module.
case 'admin/help#tokenauth':
return '<p>' . t('Token Authentication provides URL-based authentication via an alphanumeric token unique to each user.') . '</p>';
}
}