function user_is_blocked

Same name and namespace in other branches
  1. 7.x drupal-7.x/modules/user/user.module \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-6.x/modules/user/user.module
A FAPI validate handler. Sets an error if supplied username has been blocked or denied access.

Archivo

drupal-6.x/modules/user/user.module, line 553
Enables the user registration and login system.

Código

function user_is_blocked($name) {
  $deny = db_fetch_object(db_query("SELECT name FROM {users} WHERE status = 0 AND name = LOWER('%s')", $name));

  return $deny;
}