You are here

function usermerge_usermerge_actions_supported in User Merge 7

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

Implements hook_usermerge_actions_supported().

File

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

Code

function usermerge_usermerge_actions_supported() {
  return array(
    'node' => t('Change all pieces of content and the revisions to be associated with the new account.'),
    'comment' => t('Associate comments with the new account.'),
    'user' => t('Block the user account.'),
    'user_roles' => t('Migrate user roles to the new user account.'),
  );
}