function theme_apachesolr_stats_block in Apache Solr Statistics 6.3
Same name and namespace in other branches
- 6 apachesolr_stats.module \theme_apachesolr_stats_block()
- 7 apachesolr_stats.module \theme_apachesolr_stats_block()
Theme content for apachesolr_stats_block().
Parameters
array $links: An array, each element is a link to launch a search for that word.
Return value
string HTML, the themed block content.
1 theme call to theme_apachesolr_stats_block()
- apachesolr_stats_block in ./
apachesolr_stats.module - Implementation of hook_block().
File
- ./
apachesolr_stats.module, line 980 - Keeps and reports statistics about Apache Solr usage and performance.
Code
function theme_apachesolr_stats_block($links) {
return theme('item_list', $links);
}