function security_review_drush_help in Security Review 6
Same name and namespace in other branches
- 8 security_review.drush.inc \security_review_drush_help()
- 7 security_review.drush.inc \security_review_drush_help()
Implementation of hook_drush_help().
File
- ./
security_review.drush.inc, line 52 - 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.");
}
}