You are here

function sweaver_drush_help in Sweaver 6

Same name and namespace in other branches
  1. 7 drush/sweaver.drush.inc \sweaver_drush_help()

Implementation of hook_drush_help().

File

drush/sweaver.drush.inc, line 14
Sweaver Drush functions.

Code

function sweaver_drush_help($section) {
  switch ($section) {
    case 'drush:sweaver-edit':
      return dt('Edit a style known by Sweaver. With no arguments, the command will list all available styles, after that just add the id as an argument.');
    case 'drush:sweaver-variables':
      return dt('Set some variables for Sweaver. With no arguments, the command will list the default values. Supply "type" and "value" as arguments. You can currently set the editor and the warning message to your likings (defaults to vi and true).');
  }
}