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'
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();
}