function profile_admin_settings_autocomplete

Same name and namespace in other branches
  1. 6.x drupal-6.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-7.x/modules/profile/profile.module
Implements hook_menu().

Archivo

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

Código

function profile_admin_settings_autocomplete($string) {
  $matches = array();
  $result = db_select('profile_field')->fields('profile_field', array('category'))->condition('category', db_like($string) . '%', 'LIKE')->range(0, 10)->execute();

  foreach ($result as $data) {
    $matches[$data->category] = check_plain($data->category);
  }
  drupal_json_output($matches);
}