You are here

function migrate_drush_help in Migrate 6

Implementation of hook_drush_help().

File

./migrate.drush.inc, line 11
Drush support for the migrate module

Code

function migrate_drush_help($section) {
  switch ($section) {
    case 'drush:migrate-clear':
      return dt('Clear a given migration content set');
    case 'drush:migrate-import':
      return dt('Import a given migration content set');
    case 'drush:migrate-stop':
      return dt('Stop an active operation');
    case 'drush:migrate-status':
      return dt('List all content sets with current status');
    case 'drush:migrate-wipe':
      return dt('Delete all nodes from specified content types.');
  }
}