function profile_feeds_set_target in Feeds 7
Same name and namespace in other branches
- 6 mappers/profile.inc \profile_feeds_set_target()
- 7.2 mappers/profile.inc \profile_feeds_set_target()
Set the user profile target after import.
1 string reference to 'profile_feeds_set_target'
- profile_feeds_user_processor_targets_alter in mappers/
profile.inc - Implements feeds_user_processor_target_alter().
File
- mappers/
profile.inc, line 31 - On behalf implementation of Feeds mapping API for user profiles.
Code
function profile_feeds_set_target($account, $target, $value) {
$account->{$target} = $value;
return $account;
}