function tripal_feature_drush_help

2.x tripal_feature.drush.inc tripal_feature_drush_help($command)
3.x tripal_feature.drush.inc tripal_feature_drush_help($command)
1.x tripal_feature.drush.inc tripal_feature_drush_help($command)

Describes each drush command implemented by the module

Return value

The first line of description when executing the help for a given command

Related topics

File

tripal_feature/tripal_feature.drush.inc, line 15
Contains function relating to drush-integration of this module.

Code

function tripal_feature_drush_help($command) {
  switch ($command) {
    case 'drush:tripal-get_sequence':
      return dt('Prints sequences that match specified categories.');
  }
}