You are here

function tokenauth_drush_help in Token authentication 7

Same name and namespace in other branches
  1. 6.2 tokenauth.drush.inc \tokenauth_drush_help()
  2. 6 tokenauth.drush.inc \tokenauth_drush_help()

Implements 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.');
  }
}