function theme_apachesolr_breadcrumb_tid in Apache Solr Search 5
Same name and namespace in other branches
- 5.2 apachesolr_search.module \theme_apachesolr_breadcrumb_tid()
- 6 apachesolr_search.module \theme_apachesolr_breadcrumb_tid()
- 6.2 apachesolr_search.module \theme_apachesolr_breadcrumb_tid()
Return the term name from $tid.
File
- ./
apachesolr_search.module, line 344 - Provides a content search implementation for node content for use with the Apache Solr search application.
Code
function theme_apachesolr_breadcrumb_tid($tid) {
$term = taxonomy_get_term($tid);
return $term->name;
}