You are here

function apachesolr_field_name_map in Apache Solr Search 6

Same name and namespace in other branches
  1. 8 apachesolr.module \apachesolr_field_name_map()
  2. 5.2 apachesolr.module \apachesolr_field_name_map()
  3. 6.3 apachesolr.module \apachesolr_field_name_map()
  4. 6.2 apachesolr.module \apachesolr_field_name_map()
  5. 7 apachesolr.module \apachesolr_field_name_map()

Try to map a schema field name to a human-readable description.

1 call to apachesolr_field_name_map()
apachesolr_search_settings_form in ./apachesolr_search.admin.inc
Form builder function to set query field weights.

File

./apachesolr.module, line 1532
Integration with the Apache Solr search application.

Code

function apachesolr_field_name_map($field_name) {
  require_once drupal_get_path('module', 'apachesolr') . '/apachesolr.admin.inc';
  return _apachesolr_field_name_map($field_name);
}