You are here

function user_user_operations_unblock in Drupal 7

Same name and namespace in other branches
  1. 5 modules/user/user.module \user_user_operations_unblock()
  2. 6 modules/user/user.module \user_user_operations_unblock()

Callback function for admin mass unblocking users.

2 string references to 'user_user_operations_unblock'
hook_user_operations in modules/user/user.api.php
Add mass user operations.
user_user_operations in modules/user/user.module
Implements hook_user_operations().

File

modules/user/user.module, line 3300
Enables the user registration and login system.

Code

function user_user_operations_unblock($accounts) {
  $accounts = user_load_multiple($accounts);
  foreach ($accounts as $account) {

    // Skip unblocking user if they are already unblocked.
    if ($account !== FALSE && $account->status == 0) {
      user_save($account, array(
        'status' => 1,
      ));
    }
  }
}