You are here

function location_migrate_types in Migrate Extras 6

Implementation of hook_migrate_types().

File

./location.migrate.inc, line 12
Integrates location module with the migrate module

Code

function location_migrate_types() {
  $types = array(
    'location' => t('Node Location'),
  );
  return $types;
}