You are here

function usermerge_usermerge_actions_supported in User Merge 7.2

Same name and namespace in other branches
  1. 6 usermerge.module \usermerge_usermerge_actions_supported()
  2. 7 usermerge.module \usermerge_usermerge_actions_supported()

Implement hook_usermerge_actions_supported().

File

./usermerge.usermerge.inc, line 10
Implements User merge hooks for core-related user properties.

Code

function usermerge_usermerge_actions_supported() {
  return array(
    'a-core' => t('Choosing which user information (default properties and custom fields, if available) should be kept, discarded, or merged (this choice is not available for all properties).'),
    'a-entities' => t('Assigning to the new user any entities (such as nodes and comments) previously associated with the old user.'),
  );
}