You are here

function user_migrate_types in Migrate 6

Implementation of hook_migrate_types().

File

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

Code

function user_migrate_types() {
  $types = array(
    'user' => t('User'),
    'role' => t('Role'),
  );
  return $types;
}