function geofield_apachesolr_field_mappings in Geofield 7
Same name and namespace in other branches
- 7.2 geofield.apachesolr.inc \geofield_apachesolr_field_mappings()
Implements hook_apachesolr_field_mappings().
File
- ./
geofield.module, line 253
Code
function geofield_apachesolr_field_mappings() {
return array(
'geofield' => array(
'indexing_callback' => 'geofield_apachesolr_index',
'facets' => TRUE,
),
);
}