You are here

function computing_drush_help in Drupal Computing 7

Implementation of hook_drush_help().

File

./computing.drush.inc, line 96
Drupal Hybrid Computing drush interface. To use this, please install Drush at http://drupal.org/project/drush

Code

function computing_drush_help($section) {
  switch ($section) {
    case 'drush:computing-create':
      return dt("Create a computing record directly from drush.");
    case 'drush:computing-purge':
      return dt('Remove all command records.');
    case 'drush:computing-list':
      return dt('List computing records.');
    case 'meta:computing:title':
      return dt('Hybrid computing');
    case 'meta:computing:summary':
      return dt('Helps you run hybrid computing scripts in non-PHP code');
  }
}