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
Related topics
File
- tripal_pub/
tripal_pub.drush.inc, line 15 - Contains function relating to drush-integration of this module.
Code
function tripal_pub_drush_help($command) {
switch ($command) {
case 'drush:tripal-import-pubs':
return dt('Imports publications from remote databases using saved configuration settings.');
case 'drush:tripal-update-pubs':
return dt('Updates publication information for publications with a supported database cross-reference.');
}
}