You are here

function apachesolr_facetapi_adapters in Apache Solr Search 6.3

Same name and namespace in other branches
  1. 8 apachesolr.module \apachesolr_facetapi_adapters()
  2. 7 apachesolr.module \apachesolr_facetapi_adapters()

Implements hook_facetapi_adapters().

File

./apachesolr.module, line 317
Integration with the Apache Solr search application.

Code

function apachesolr_facetapi_adapters() {
  return array(
    'apachesolr' => array(
      'handler' => array(
        'class' => 'ApacheSolrFacetapiAdapter',
        'parent' => 'adapter',
        'path' => drupal_get_path('module', 'apachesolr') . '/plugins/facetapi',
        'file' => 'adapter.inc',
      ),
    ),
  );
}