You are here

function nodereference_apachesolr_field_mappings in Apache Solr Search 6.3

Implements hook_apachesolr_field_mappings() on behalf of References (node_reference).

See also

http://drupal.org/node/1059372

File

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

Code

function nodereference_apachesolr_field_mappings() {
  $mappings = array(
    'nodereference' => array(
      'indexing_callback' => 'apachesolr_nodereference_indexing_callback',
      'index_type' => 'integer',
      'map callback' => 'apachesolr_nodereference_map_callback',
      'facets' => TRUE,
    ),
  );
  return $mappings;
}