You are here

function rich_snippets_apachesolr_index_document_build in Rich Snippets 7

Implements hook_apachesolr_index_document_build().

Adds schema.org mappings to the index.

File

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

Code

function rich_snippets_apachesolr_index_document_build(ApacheSolrDocument $document, $entity, $entity_type, $env_id) {
  if ($bundle = rich_snippets_extract_bundle($entity_type, $entity)) {
    $rdf_mappings = rich_snippets_get_rdf_schema_mappings($entity_type, $bundle);
    $document
      ->setField('zm_rdf_schema_mappings', drupal_json_encode($rdf_mappings));
  }
}