You are here

function hacked_drush_help in Hacked! 8.2

Same name and namespace in other branches
  1. 5 hacked.drush.inc \hacked_drush_help()
  2. 6.2 hacked.drush.inc \hacked_drush_help()
  3. 6 hacked.drush.inc \hacked_drush_help()
  4. 7.2 hacked.drush.inc \hacked_drush_help()

Implements hook_drush_help().

File

./hacked.drush.inc, line 15
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.');
  }
}