function apachesolr_facetapi_adapters in Apache Solr Search 7
Same name and namespace in other branches
- 8 apachesolr.module \apachesolr_facetapi_adapters()
 - 6.3 apachesolr.module \apachesolr_facetapi_adapters()
 
Implements hook_facetapi_adapters().
File
- ./
apachesolr.module, line 278  - Integration with the Apache Solr search application.
 
Code
function apachesolr_facetapi_adapters() {
  return array(
    'apachesolr' => array(
      'handler' => array(
        'class' => 'ApacheSolrFacetapiAdapter',
      ),
    ),
  );
}