You are here

function profile_usermerge_actions_supported in User Merge 7

Same name and namespace in other branches
  1. 6 usermerge.module \profile_usermerge_actions_supported()
  2. 7.2 includes/profile.usermerge.inc \profile_usermerge_actions_supported()

Implement hook_usermerge_actions_supported() on behalf of profile module. Note: This uses the D6 profile module and not the entity API

File

./usermerge.module, line 166
Main file for the user merge module, which re-assigns data from an abandoned account to a live one.

Code

function profile_usermerge_actions_supported() {
  return array(
    'profile' => t('Merge profile data using the new account where it is populated.'),
  );
}