You are here

function realname_user_operations_realname_update in Real Name 7

Callback function for admin mass generating user real names.

Parameters

array $uids: An array of user IDs.

1 string reference to 'realname_user_operations_realname_update'
realname_user_operations in ./realname.module
Implements hook_user_operations().

File

./realname.module, line 206
Provides token-based name displays for users.

Code

function realname_user_operations_realname_update(array $uids) {
  $accounts = user_load_multiple($uids);
  foreach ($accounts as $account) {
    realname_update($account);
  }
}