You are here

function theme_apachesolr_stats_block in Apache Solr Statistics 6

Same name and namespace in other branches
  1. 6.3 apachesolr_stats.module \theme_apachesolr_stats_block()
  2. 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

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 1093
Keeps and reports statistics about Apache Solr usage and performance.

Code

function theme_apachesolr_stats_block($links) {
  return theme('item_list', $links);
}