You are here

function content_migrate_get_field_values in Content Construction Kit (CCK) 7.3

Create a D7-style field array from data stored in the D6 content field tables.

Parameters

$field_name : Optionally request only a specific field name.

4 calls to content_migrate_get_field_values()
cck_content_migrate_instance_alter in ./cck.module
Implements hook_content_migrate_instance_alter().
content_migrate_get_options in modules/content_migrate/includes/content_migrate.admin.inc
Determine which fields can be migrated, have already been migrated, and are unable to be migrated due to missing modules.
_content_migrate_batch_process_create_fields in modules/content_migrate/includes/content_migrate.admin.inc
Batch operation callback to create fields.
_content_migrate_batch_process_migrate_data in modules/content_migrate/includes/content_migrate.admin.inc
Batch operation callback to migrate data. Copy old table data to new field table.

File

modules/content_migrate/content_migrate.module, line 36
Code For D6 to D7 field data update.

Code

function content_migrate_get_field_values($field_name = NULL) {
  module_load_include('inc', 'content_migrate', 'includes/content_migrate.values');
  return _content_migrate_get_field_values($field_name);
}