function masquerade_drush_drush_help in Masquerade Extras 7.2
Same name and namespace in other branches
- 6.2 masquerade_drush/masquerade_drush.drush.inc \masquerade_drush_drush_help()
Implements hook_drush_help().
See also
hook_drush_help()
File
- masquerade_drush/
masquerade_drush.drush.inc, line 62 - Provides some drush commands for masquerade.
Code
function masquerade_drush_drush_help($section) {
switch ($section) {
// drush masquerade
case 'drush:masquerade':
return dt('Allows you to initialize, terminate, and list masquerades in the current site.');
case 'meta:masquerade:title':
return dt('Masquerade Commands');
case 'meta:masquerade:summary':
return dt('Manipulates masquerades within a Drupal site.');
// drush sessions
case 'drush:sessions':
return dt('Allows you to view and terminate active user sessions in the site.');
case 'meta:sessions:title':
return dt('User Sesssions');
case 'meta:sessions:summary':
return dt('Manipulates user sessions in your Drupal site.');
}
}