You are here

function wordpress_migrate_drush_help in WordPress Migrate 7

Same name and namespace in other branches
  1. 7.2 wordpress_migrate.drush.inc \wordpress_migrate_drush_help()

Implementation of hook_drush_help().

File

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

Code

function wordpress_migrate_drush_help($section) {
  switch ($section) {
    case 'drush:wordpress-migrate-import':
      return dt('Import a WordPress blog');
    case 'drush:wordpress-migrate-rollback':
      return dt('Rollback a WordPress blog');
  }
}