You are here

function support_solr_apachesolr_facets in Support Ticketing System 6

Implementation of hook_apachesolr_facets().

File

support_solr/support_solr.module, line 132
Apache Solr search for support module.

Code

function support_solr_apachesolr_facets() {
  $facets = array();
  $info = module_invoke_all('support_solr_info');
  foreach ($info as $k => $v) {
    $facets[$k] = $v['facet'];
  }
  return $facets;
}