function theme_apachesolr_views_term_titles in Apache Solr Views 6
theme function for the term titles
1 theme call to theme_apachesolr_views_term_titles()
File
- ./
apachesolr_views.module, line 28 - Provides Views Implementation for the ApacheSolr Search Integration project drupal.org/project/apachesolr
Code
function theme_apachesolr_views_term_titles($term_names) {
return "<span>" . implode('</span> + <span>', $term_names) . "</span>";
}