function tripal_core_drush_help

2.x tripal_core.drush.inc tripal_core_drush_help($command)
3.x tripal_core.drush.inc tripal_core_drush_help($command)
1.x tripal_core.drush.inc tripal_core_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

legacy/tripal_core/tripal_core.drush.inc, line 22
Contains function relating to drush-integration of this module.

Code

function tripal_core_drush_help($command) {
  switch ($command) {

    // Deprecated functions
    case 'drush:tripal-launch-jobs':
      return dt('DEPRECATED. Please use: trp-run-jobs.');
      break;
    case 'drush:tripal-current-job':
      return dt('DEPRECATED. Please use: trp-get-currjob.');
      break;
    case 'drush:tripal-rerun-job':
      return dt('DEPRECATED. Please use: trp-rerun-job.');
      break;

  }
}