function user_user_operations_block

Callback function for admin mass blocking users.

2 string references to 'user_user_operations_block'
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 3331

Code

function user_user_operations_block($accounts) {
    $accounts = user_load_multiple($accounts);
    foreach ($accounts as $account) {
        // Skip blocking user if they are already blocked.
        if ($account !== FALSE && $account->status == 1) {
            // For efficiency manually save the original account before applying any
            // changes.
            $account->original = clone $account;
            user_save($account, array(
                'status' => 0,
            ));
        }
    }
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.