You are here

function qa_accounts_drush_help in QA Accounts 8

Implements hook_drush_help().

File

./qa_accounts.drush.inc, line 36
Drush commands for the qa_accounts module.

Code

function qa_accounts_drush_help($section) {
  switch ($section) {
    case 'meta:qa_accounts:title':
      return dt('QA Accounts commands');
    case 'drush:qa-accounts-test-users-create':
      $message = dt("Create a test user for each custom user role, with username and password both equal to the role machine name, e.g., 'page_creator'.");
      return $message;
  }
}