function theme_top_searches_block in Top Searches 7
Same name and namespace in other branches
- 5 top_searches.module \theme_top_searches_block()
- 6 top_searches.module \theme_top_searches_block()
1 theme call to theme_top_searches_block()
File
- ./
top_searches.module, line 179
Code
function theme_top_searches_block($variables) {
$show_counters = variable_get('top_searches_show_counters', 0);
foreach ($variables['top_searches'] as $value) {
$items['items'][] = l($value['ts_q'], 'search/node/' . $value['ts_q']) . ($show_counters ? ' (' . $value['ts_counter'] . ')' : '');
}
return theme('item_list', $items);
}