You are here

function apachesolr_search_theme in Apache Solr Search 6.2

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 apachesolr_search.module \apachesolr_search_theme()
  4. 7 apachesolr_search.module \apachesolr_search_theme()

Implementation of hook_theme().

File

./apachesolr_search.module, line 1380
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(
        'field' => NULL,
        'exclude' => FALSE,
      ),
    ),
    'apachesolr_breadcrumb_uid' => array(
      'arguments' => array(
        'field' => NULL,
        'exclude' => FALSE,
      ),
    ),
    'apachesolr_breadcrumb_tid' => array(
      'arguments' => array(
        'field' => NULL,
        'exclude' => FALSE,
      ),
    ),
    'apachesolr_breadcrumb_type' => array(
      'arguments' => array(
        'field' => NULL,
        'exclude' => FALSE,
      ),
    ),
    'apachesolr_breadcrumb_language' => array(
      'arguments' => array(
        'lang' => NULL,
        'exclude' => FALSE,
      ),
    ),
    'apachesolr_breadcrumb_cck' => array(
      'arguments' => array(
        'field' => NULL,
      ),
    ),
    'apachesolr_breadcrumb_changed' => array(
      'arguments' => array(
        'field' => NULL,
      ),
      'function' => 'theme_apachesolr_breadcrumb_date_range',
    ),
    'apachesolr_breadcrumb_created' => array(
      'arguments' => array(
        'field' => NULL,
      ),
      'function' => 'theme_apachesolr_breadcrumb_date_range',
    ),
    'apachesolr_browse_blocks' => array(
      'arguments' => array(
        'blocks' => NULL,
      ),
    ),
    'apachesolr_currentsearch' => array(
      'arguments' => array(
        'total_found' => NULL,
        'links' => NULL,
      ),
    ),
    'apachesolr_search_snippets' => array(
      'arguments' => array(
        'doc' => NULL,
        'snippets' => array(),
      ),
    ),
    'apachesolr_search_noresults' => array(
      'arguments' => array(),
    ),
    'apachesolr_search_results_page' => array(
      'arguments' => array(
        'form' => '',
        'results' => '',
      ),
    ),
  );
}