You are here

function cas_drush_help in CAS 6.3

Same name and namespace in other branches
  1. 7 cas.drush.inc \cas_drush_help()

Implements hook_drush_help().

File

./cas.drush.inc, line 43
Drush commands for CAS.

Code

function cas_drush_help($section) {
  switch ($section) {
    case 'drush:cas-user-create':
      return dt('Create a CAS user account with the specified CAS username.');
    case 'drush:cas-user-add-role':
      return dt('Add a role to the specified CAS usernames.');
  }
}