user_autocomplete

Versions
4.7
user_autocomplete($string)
5 – 7
user_autocomplete($string = '')

Menu callback; Retrieve a JSON object containing autocomplete suggestions for existing users.

Code

modules/user/user.pages.inc, line 11

<?php
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);
    }
  }

  drupal_json($matches);
}
?>
Login or register to post comments
 
 

All source code and documentation on this site is released under the terms of the GNU General Public License, version 2 and later. Drupal is a registered trademark of Dries Buytaert.