function profile_admin_settings_autocomplete

Same name and namespace in other branches
  1. 7.x drupal-7.x/modules/profile/profile.admin.inc \profile_admin_settings_autocomplete()

Retrieve a pipe delimited string of autocomplete suggestions for profile categories

1 string reference to 'profile_admin_settings_autocomplete'
profile_menu in drupal-6.x/modules/profile/profile.module
Implementation of hook_menu().

Archivo

drupal-6.x/modules/profile/profile.admin.inc, line 396
Administrative page callbacks for the profile module.

Código

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);
  }
  drupal_json($matches);
}