You are here

function theme_apachesolr_breadcrumb_type in Apache Solr Search 6

Same name and namespace in other branches
  1. 5.2 apachesolr_search.module \theme_apachesolr_breadcrumb_type()
  2. 5 apachesolr.module \theme_apachesolr_breadcrumb_type()
  3. 6.2 apachesolr_search.module \theme_apachesolr_breadcrumb_type()

Return the human readable text for a content type.

File

./apachesolr_search.module, line 1178
Provides a content search implementation for node content for use with the Apache Solr search application.

Code

function theme_apachesolr_breadcrumb_type($type) {
  $name = node_get_types('name', $type);
  return apachesolr_tt("nodetype:type:{$type}:name", $name);
}