function profile_autocomplete
Same name and namespace in other branches
- 6.x drupal-6.x/modules/profile/profile.pages.inc \profile_autocomplete()
Callback to allow autocomplete of profile text fields.
1 string reference to 'profile_autocomplete'
- profile_menu in drupal-7.x/
modules/ profile/ profile.module - Implements hook_menu().
Archivo
- drupal-7.x/
modules/ profile/ profile.pages.inc, line 121 - User page callbacks for the profile module.
Código
function profile_autocomplete($field, $string) {
$matches = array();
$autocomplete_field = (bool) db_query_range("SELECT 1 FROM {profile_field} WHERE fid = :fid AND autocomplete = 1", 0, 1, array(':fid' => $field))->fetchField();
if ($autocomplete_field) {
$values = db_select('profile_value')->fields('profile_value', array('value'))->condition('fid', $field)->condition('value', db_like($string) . '%', 'LIKE')->groupBy('value')->orderBy('value')->range(0, 10)->execute()->fetchCol();
foreach ($values as $value) {
$matches[$value] = check_plain($value);
}
}
drupal_json_output($matches);
}