You are here

function content_migrate_drush_help in Content Construction Kit (CCK) 7.3

Implementation of hook_drush_help().

File

modules/content_migrate/includes/content_migrate.drush.inc, line 11
content_migrate.drush.inc Drush commands for content_migrate,

Code

function content_migrate_drush_help($section) {
  switch ($section) {
    case 'content migrate:content-migrate-status':
      return dt("Show field migration status");
    case 'content migrate:content-migrate-fields':
      return dt("Migrate some or all fields");
    case 'content migrate:content-migrate-rollback':
      return dt("Roll back some or all fields");
    case 'content migrate:content-migrate-structure':
      return dt("Migrate a single field structure");
    case 'content migrate:content-migrate-data':
      return dt("Migrate a single field data");
  }
}