You are here

function background_process_drush_help in Background Process 7.2

Implementation of hook_drush_help().

File

./background_process.drush.inc, line 10
Drush sql commands

Code

function background_process_drush_help($section) {
  switch ($section) {
    case 'meta:background_process:title':
      return dt('AutoSlave commands');
    case 'meta:background_process:summary':
      return dt('Examine and modify your Drupal database via AutoSlave.');
  }
}