You are here

function taxonomy_migrate_fields_term in Migrate 6

Implementation of hook_migrate_fields_term().

File

modules/taxonomy.migrate.inc, line 19
Implementation of taxonomy destination handling

Code

function taxonomy_migrate_fields_term($type) {
  $fields = array(
    'tid' => t('Taxonomy: Existing term ID'),
    'vid' => t('Taxonomy: Vocabulary'),
    'name' => t('Taxonomy: Name'),
    'description' => t('Taxonomy: Description'),
    'weight' => t('Taxonomy: Weight'),
    'parent' => t('Taxonomy: Parent'),
    'synonyms' => t('Taxonomy: Synonyms'),
  );
  return $fields;
}