You are here

function rich_snippets_rich_snippets_preprocessors in Rich Snippets 7

Implements hook_rich_snippets_preprocessors().

File

./rich_snippets.module, line 93
Overrides the standard search results templates and CSS to display results similar to major search engines.

Code

function rich_snippets_rich_snippets_preprocessors() {
  return array(
    'apachesolr' => array(
      'class' => 'Drupal_RichSnippets_Apachesolr_ApachesolrSchemaPreprocessor',
    ),
    'node' => array(
      'class' => 'Drupal_RichSnippets_Node_NodeSchemaPreprocessor',
    ),
  );
}