You are here

function taxonomy_migrate_types in Migrate 6

Implementation of hook_migrate_types().

File

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

Code

function taxonomy_migrate_types() {
  $types = array(
    'term' => t('Taxonomy Term'),
  );
  return $types;
}