profile_admin_settings_autocomplete

Versions
5 – 7
profile_admin_settings_autocomplete($string)

Retrieve a pipe delimited string of autocomplete suggestions for profile categories

Code

modules/profile/profile.admin.inc, line 396

<?php
function profile_admin_settings_autocomplete($string) {
  $matches = array();
  $result = db_query_range("SELECT category FROM {profile_fields} WHERE LOWER(category) LIKE LOWER('%s%%')", $string, 0, 10);
  while ($data = db_fetch_object($result)) {
    $matches[$data->category] = check_plain($data->category);
  }
  print drupal_to_js($matches);
  exit();
}
?>
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.