function apachesolr_attachments_theme in Apache Solr Attachments 7
Same name and namespace in other branches
- 6.3 apachesolr_attachments.module \apachesolr_attachments_theme()
Implements hook_theme().
File
- ./apachesolr_attachments.module, line 686 
- Provides a file attachment search implementation for use with the Apache Solr module
Code
function apachesolr_attachments_theme() {
  return array(
    'apachesolr_search_snippets__file' => array(
      'variables' => array(
        'doc' => NULL,
        'snippets' => array(),
      ),
    ),
  );
}