function theme_apachesolr_currentsearch in Apache Solr Search 6.2
Same name and namespace in other branches
- 5.2 apachesolr_search.module \theme_apachesolr_currentsearch()
- 6 apachesolr_search.module \theme_apachesolr_currentsearch()
Return current search block contents
1 theme call to theme_apachesolr_currentsearch()
- apachesolr_search_currentsearch_block in ./
apachesolr_search.module - Return the contents of the "Current search" block.
File
- ./
apachesolr_search.module, line 1530 - Provides a content search implementation for node content for use with the Apache Solr search application.
Code
function theme_apachesolr_currentsearch($total_found, $links) {
return theme_item_list($links, format_plural($total_found, 'Search found 1 item', 'Search found @count items'));
}