function tripal_phylogeny_drush_help

2.x tripal_phylogeny.drush.inc tripal_phylogeny_drush_help($command)
3.x tripal_phylogeny.drush.inc tripal_phylogeny_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_phylogeny/tripal_phylogeny.drush.inc, line 15
Contains function relating to drush-integration of this module.

Code

function tripal_phylogeny_drush_help($command) {
  switch ($command) {
    case 'trp-insert-phylotree':
      return dt('Adds a new phylotree record.');
      break;
    case 'trp-update-phylotree':
      return dt('Updates an existing phylotree record.');
      break;
    case 'trp-delete-phylotree':
      return dt('Deletes an existing phylotree record.');
      break;
  }
}