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