You are here

function apachesolr_search_apachesolr_entities in Apache Solr Views 6

Implementation of hook_apachesolr_entities(). This is done for apachesolr_search module.

File

./apachesolr_views.module, line 36
Provides Views Implementation for the ApacheSolr Search Integration project drupal.org/project/apachesolr

Code

function apachesolr_search_apachesolr_entities() {
  return array(
    'node' => array(
      'name' => 'Node',
      'base_field' => 'nid',
    ),
  );
}