You are here

function rich_snippets_apachesolr_field_mappings in Rich Snippets 7

Implements hook_apachesolr_field_mappings().

File

./rich_snippets.apachesolr.inc, line 184
Apache Solr Search Integration hook implementations and helper functions.

Code

function rich_snippets_apachesolr_field_mappings() {
  $mappings = array();
  $mappings['image'] = array(
    'indexing_callback' => 'rich_snippets_apachesolr_image_indexing_callback',
    'index_type' => 'binary',
    'facets' => FALSE,
  );
  $mappings['text'] = array(
    'indexing_callback' => 'rich_snippets_apachesolr_text_indexing_callback',
    'index_type' => 'text',
    'facets' => FALSE,
  );
  return $mappings;
}