function theme_apachesolr_unclick_link in Apache Solr Search 5
Same name and namespace in other branches
- 5.2 apachesolr.module \theme_apachesolr_unclick_link()
- 6 apachesolr.module \theme_apachesolr_unclick_link()
- 6.2 apachesolr.module \theme_apachesolr_unclick_link()
4 theme calls to theme_apachesolr_unclick_link()
- apachesolrlang_block in contrib/
apachesolr_lang/ apachesolrlang.module - Implementation of hook_block().
- apachesolr_facet_block in ./
apachesolr.module - apachesolr_multisitesearch_block in contrib/
apachesolr_multisitesearch/ apachesolr_multisitesearch.module - Implementation of hook_block().
- apachesolr_search_block in ./
apachesolr_search.module - Implementation of hook_block().
File
- ./
apachesolr.module, line 844 - Integration with the Apache Solr search application.
Code
function theme_apachesolr_unclick_link($path) {
return l("(-)", $path, NULL, isset($_GET['solrsort']) ? "solrsort=" . check_plain($_GET['solrsort']) : FALSE);
}