You are here

function drush_content_migrate_field_structure in Content Construction Kit (CCK) 7.3

File

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

Code

function drush_content_migrate_field_structure($field_name) {
  drush_log(dt('Migrating structure for !field', array(
    '!field' => $field_name,
  )), 'status');
  module_load_include('inc', 'content_migrate', 'includes/content_migrate.admin');
  $context = array();
  _content_migrate_batch_process_create_fields($field_name, $context);
}