You are here

function userreference_apachesolr_field_mappings in Apache Solr Search 6.3

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

See also

http://drupal.org/node/1059372

File

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

Code

function userreference_apachesolr_field_mappings() {
  $mappings = array(
    'userreference' => array(
      'indexing_callback' => 'apachesolr_userreference_indexing_callback',
      'index_type' => 'integer',
      'map callback' => 'apachesolr_userreference_map_callback',
      'facets' => TRUE,
    ),
  );
  return $mappings;
}