function apachesolr_field_name_map in Apache Solr Search 5.2
Same name and namespace in other branches
- 8 apachesolr.module \apachesolr_field_name_map()
- 6.3 apachesolr.module \apachesolr_field_name_map()
- 6 apachesolr.module \apachesolr_field_name_map()
- 6.2 apachesolr.module \apachesolr_field_name_map()
- 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 1394 - 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);
}