function profile_admin_settings_autocomplete in Drupal 6
Same name and namespace in other branches
- 5 modules/profile/profile.module \profile_admin_settings_autocomplete()
- 7 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 modules/
profile/ profile.module - Implementation of hook_menu().
File
- modules/
profile/ profile.admin.inc, line 396 - Administrative page callbacks for the profile module.
Code
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);
}