function hacked_drush_help in Hacked! 6
Same name and namespace in other branches
- 8.2 hacked.drush.inc \hacked_drush_help()
- 5 hacked.drush.inc \hacked_drush_help()
- 6.2 hacked.drush.inc \hacked_drush_help()
- 7.2 hacked.drush.inc \hacked_drush_help()
Implementation of hook_drush_help().
File
- ./
hacked.drush.inc, line 14 - Hacked drush command.
Code
function hacked_drush_help($section) {
switch ($section) {
case 'drush:hacked-list-projects':
return dt('List projects and their hacked/unhacked status.');
case 'drush:hacked-details':
return dt('Show details of the files in one project, and the hacked/unhacked status of those files.');
case 'drush:hacked-diff':
return dt('Output a unified diff of the specified project.');
}
}