You are here

function user_migrate_fields_user in Migrate 6

Implementation of hook_migrate_fields_user().

File

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

Code

function user_migrate_fields_user($type) {
  $fields = array(
    'uid' => t('User: Existing user ID'),
    'name' => t('User: Username'),
    'pass' => t('User: Password'),
    'mail' => t('User: Email address'),
    'created' => t('User: Account created'),
    'access' => t('User: Account last accessed'),
    'login' => t('User: Last logged in'),
    'roles' => t('User: Roles'),
    'status' => t('User: Status'),
  );
  return $fields;
}