You are here

function rich_snippets_apachesolr_search_result_alter in Rich Snippets 7

Implements hook_apachesolr_search_result_alter().

File

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

Code

function rich_snippets_apachesolr_search_result_alter($doc, $extra, $query) {
  $response = apachesolr_static_response_cache($query
    ->getSearcher());
  if (!empty($response->highlighting->{$doc->id}->label)) {
    $doc->label = '';
    $highlighted = $response->highlighting->{$doc->id}->label;
    foreach ($highlighted as $text) {
      $doc->label .= $text;
    }
  }
}