You are here

function rich_snippets_apachesolr_text_indexing_callback in Rich Snippets 7

Indexing callback that stores text.

See also

apachesolr_fields_default_indexing_callback()

1 string reference to 'rich_snippets_apachesolr_text_indexing_callback'
rich_snippets_apachesolr_field_mappings in ./rich_snippets.apachesolr.inc
Implements hook_apachesolr_field_mappings().

File

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

Code

function rich_snippets_apachesolr_text_indexing_callback($entity, $field_name, $index_key, $field_info) {
  if (rich_snippets_has_schemaorg_mapping($entity, $field_name)) {
    return apachesolr_fields_default_indexing_callback($entity, $field_name, $index_key, $field_info);
  }
  return array();
}