function apachesolr_commentsearch_apachesolr_theme_breadcrumb_alter in Apache Solr Search 6.2
File
- contrib/
apachesolr_commentsearch/ apachesolr_commentsearch.module, line 102
Code
function apachesolr_commentsearch_apachesolr_theme_breadcrumb_alter(&$breadcrumb_name) {
// While the goal here is to hijack nearly every breadcrumb generation, we
// can't do it if it's a ckk facet. That would step on the toes of
// date facets, etc. So reverse the logic from apachesolr_search_apachesolr_theme_breadcrumb_alter
// and only alter non-cck breadcrumbs.
$matches = preg_split('/_cck_/', $fieldname);
if (!empty($matches[1])) {
$breadcrumb_name = 'apachesolr_commentsearch_breadcrumb_type';
}
}