You are here

function profile_usermerge_actions_supported in User Merge 6

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

Implement hook_usermerge_actions_supported() on behalf of profile module.

File

./usermerge.module, line 155
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.'),
  );
}