You are here

function entityreference_usermerge_actions_supported in User Merge 7.2

Implement hook_usermerge_actions_supported().

File

includes/entityreference.usermerge.inc, line 98
Adds support for Entity Reference. Supplemental include loaded via usermerge_load_includes().

Code

function entityreference_usermerge_actions_supported($items) {
  return array(
    'entityreference' => t('Assigning to the new user any entities (such as nodes) referencing the old user using the Entity Reference module.'),
  );
}