You are here

function location_user_migrate_types in Migrate Extras 6

Implementation of hook_migrate_types().

File

./location_user.migrate.inc, line 15
Integrates location_user module (part of location) with the migrate module

Code

function location_user_migrate_types() {
  $types = array(
    'location_user' => t('User Location'),
  );
  return $types;
}