Same name and namespace in other branches
  1. 4.7.x modules/user.module \user_autocomplete()
  2. 6.x modules/user/user.pages.inc \user_autocomplete()
  3. 7.x modules/user/user.pages.inc \user_autocomplete()

Retrieve a pipe delimited string of autocomplete suggestions for existing users

1 string reference to 'user_autocomplete'
user_menu in modules/user/user.module
Implementation of hook_menu().

File

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

Code

function user_autocomplete($string = '') {
  $matches = array();
  if ($string) {
    $result = db_query_range("SELECT name FROM {users} WHERE LOWER(name) LIKE LOWER('%s%%')", $string, 0, 10);
    while ($user = db_fetch_object($result)) {
      $matches[$user->name] = check_plain($user->name);
    }
  }
  print drupal_to_js($matches);
  exit;
}