function theme_apachesolr_sort_list in Apache Solr Search 6
Same name and namespace in other branches
- 8 apachesolr.module \theme_apachesolr_sort_list()
- 5.2 apachesolr.module \theme_apachesolr_sort_list()
- 5 apachesolr.module \theme_apachesolr_sort_list()
- 6.3 apachesolr.module \theme_apachesolr_sort_list()
- 6.2 apachesolr.module \theme_apachesolr_sort_list()
- 7 apachesolr.module \theme_apachesolr_sort_list()
1 theme call to theme_apachesolr_sort_list()
- apachesolr_block in ./
apachesolr.module - Implementation of hook_block().
File
- ./
apachesolr.module, line 1874 - Integration with the Apache Solr search application.
Code
function theme_apachesolr_sort_list($items) {
// theme('item_list') expects a numerically indexed array.
$items = array_values($items);
return theme('item_list', $items);
}