function tokenauth_drush_help in Token authentication 6.2
Same name and namespace in other branches
- 6 tokenauth.drush.inc \tokenauth_drush_help()
- 7 tokenauth.drush.inc \tokenauth_drush_help()
Implementation of hook_drush_help().
File
- ./
tokenauth.drush.inc, line 38 - Tokenauth drush commands.
Code
function tokenauth_drush_help($section) {
switch ($section) {
case 'drush:tokenauth-reset':
return dt('Reset the Token Authentication token for one user.');
case 'drush:tokenauth-reset-all':
return dt('Reset the Token Authentication token for all users.');
}
}