You are here

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()
apachesolr_views_handler_argument_tid::title in handlers/apachesolr_views_handler_argument_tid.inc

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>";
}