You are here

function theme_apachesolr_breadcrumb_type in Apache Solr Search 5.2

Same name and namespace in other branches
  1. 5 apachesolr.module \theme_apachesolr_breadcrumb_type()
  2. 6 apachesolr_search.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 1078
Provides a content search implementation for node content for use with the Apache Solr search application.

Code

function theme_apachesolr_breadcrumb_type($field) {
  $name = node_get_types('name', $field['#value']);
  return apachesolr_tt("nodetype:type:{$field['#value']}:name", $name);
}