function apachesolr_attachments_preprocess_apachesolr_search_snippets__file in Apache Solr Attachments 7
Preprocess function for theme_apachesolr_search_snippets__file().
File
- ./apachesolr_attachments.module, line 697 
- Provides a file attachment search implementation for use with the Apache Solr module
Code
function apachesolr_attachments_preprocess_apachesolr_search_snippets__file(&$vars) {
  // Call the standard preprocess function for search snippets so that
  // $vars['flattened_snippets'] will be defined.
  // @todo This assumes apachesolr_search.module is enabled, but it's not
  //likely this theme function will ever be called if it isn't.
  apachesolr_search_preprocess_apachesolr_search_snippets($vars);
}