You are here

function security_review_drush_help in Security Review 7

Same name and namespace in other branches
  1. 8 security_review.drush.inc \security_review_drush_help()
  2. 6 security_review.drush.inc \security_review_drush_help()

Implementation of hook_drush_help().

File

./security_review.drush.inc, line 59
Drush commands for Security Review module.

Code

function security_review_drush_help($section) {
  switch ($section) {
    case 'drush:security-review':
      return dt("Run configuration security checks on your Drupal site.");
    case 'drush:password-check-setup':
      return dt("Creates a table and fills it with dictionary words for rainbow testing.");
  }
}