function user_is_blocked

Checks for usernames blocked by user administration.

Parameters

$name: A string containing a name of the user.

Return value

Object with property 'name' (the user name), if the user is blocked; FALSE if the user is not blocked.

1 call to user_is_blocked()
user_login_name_validate in drupal/modules/user/user.module
A FAPI validate handler. Sets an error if supplied username has been blocked.

File

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

Code

function user_is_blocked($name) {
  return db_select('users')
    ->fields('users', array(
    'name',
  ))
    ->condition('name', db_like($name), 'LIKE')
    ->condition('status', 0)
    ->execute()
    ->fetchObject();
}