function tripal_pub_drush_help

2.x tripal_pub.drush.inc tripal_pub_drush_help($command)
3.x tripal_pub.drush.inc tripal_pub_drush_help($command)
1.x tripal_pub.drush.inc tripal_pub_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

File

tripal_pub/tripal_pub.drush.inc, line 14
Contains function relating to drush-integration of this module.

Code

function tripal_pub_drush_help($command) {
  switch ($command) {
    case 'drush:tripal-pub-import':
      return dt('Imports publications from remote databases using saved configuration settings.');
  }
}