function profile_user_import_save_profile in User Import 5.2
Same name and namespace in other branches
- 8 supported/profile.inc \profile_user_import_save_profile()
- 5 supported/profile.inc \profile_user_import_save_profile()
- 6.4 supported/profile.inc \profile_user_import_save_profile()
- 6.2 supported/profile.inc \profile_user_import_save_profile()
- 7 supported/profile.inc \profile_user_import_save_profile()
- 7.2 supported/profile.inc \profile_user_import_save_profile()
1 call to profile_user_import_save_profile()
- profile_user_import_after_save in supported/
profile.inc - Implementation of hook_user_import_after_save().
File
- supported/
profile.inc, line 38
Code
function profile_user_import_save_profile($field, $uid, $value) {
$profile = db_query("INSERT INTO {profile_values} (fid,uid,value) VALUES(%d,%d,'%s')", $field, $uid, $value);
return;
}