You are here

function taxonomy_search_facetapi_field_mappings in Faceted Navigation for Search 7

Implements hook_search_facetapi_field_mappings().

File

./search_facetapi.facetapi.inc, line 113
Facet API hook implementations.

Code

function taxonomy_search_facetapi_field_mappings() {
  $mappings = array(
    'taxonomy_term_reference' => array(
      'map callback' => 'facetapi_map_taxonomy_terms',
      'query type' => 'term',
      'facet mincount allowed' => TRUE,
    ),
  );
  return $mappings;
}