You are here

function profile_user_import_form_update_user in User Import 6.2

Same name and namespace in other branches
  1. 8 supported/profile.inc \profile_user_import_form_update_user()
  2. 5 supported/profile.inc \profile_user_import_form_update_user()
  3. 6.4 supported/profile.inc \profile_user_import_form_update_user()
  4. 7 supported/profile.inc \profile_user_import_form_update_user()
  5. 7.2 supported/profile.inc \profile_user_import_form_update_user()

Implementation of hook_user_import_form_update_user().

File

supported/profile.inc, line 16

Code

function profile_user_import_form_update_user() {
  $form['profile'] = array(
    'title' => t('Profile'),
    'description' => t('Affected: Profile fields.'),
  );
  return $form;
}