You are here

function apachesolr_search_theme in Apache Solr Search 6

Same name and namespace in other branches
  1. 8 apachesolr_search.module \apachesolr_search_theme()
  2. 6.3 apachesolr_search.module \apachesolr_search_theme()
  3. 6.2 apachesolr_search.module \apachesolr_search_theme()
  4. 7 apachesolr_search.module \apachesolr_search_theme()

Implementation of hook_theme().

File

./apachesolr_search.module, line 1090
Provides a content search implementation for node content for use with the Apache Solr search application.

Code

function apachesolr_search_theme() {
  return array(
    'apachesolr_breadcrumb_is_book_bid' => array(
      'arguments' => array(
        'bid' => NULL,
        'exclude' => FALSE,
      ),
    ),
    'apachesolr_breadcrumb_uid' => array(
      'arguments' => array(
        'uid' => NULL,
        'exclude' => FALSE,
      ),
    ),
    'apachesolr_breadcrumb_tid' => array(
      'arguments' => array(
        'tid' => NULL,
        'exclude' => FALSE,
      ),
    ),
    'apachesolr_breadcrumb_type' => array(
      'arguments' => array(
        'type' => NULL,
        'exclude' => FALSE,
      ),
    ),
    'apachesolr_breadcrumb_language' => array(
      'arguments' => array(
        'lang' => NULL,
        'exclude' => FALSE,
      ),
    ),
    'apachesolr_breadcrumb_changed' => array(
      'arguments' => array(
        'type' => NULL,
      ),
    ),
    'apachesolr_breadcrumb_created' => array(
      'arguments' => array(
        'type' => NULL,
      ),
    ),
    'apachesolr_currentsearch' => array(
      'arguments' => array(
        'total_found' => NULL,
        'links' => NULL,
      ),
    ),
    'apachesolr_search_snippets' => array(
      'arguments' => array(
        'doc' => NULL,
        'snippets' => NULL,
      ),
    ),
    'apachesolr_search_results_page' => array(
      'arguments' => array(
        'form' => '',
        'results' => '',
      ),
    ),
    'apachesolr_search_suggestions' => array(
      'arguments' => array(
        'links' => NULL,
      ),
    ),
  );
}