You are here

function apachesolr_user_facetapi_searcher_info_alter in Apachesolr User 7

File

./apachesolr_user.module, line 212
Indexer for the user entities for the Apachesolr module.

Code

function apachesolr_user_facetapi_searcher_info_alter(array &$searcher_info) {
  foreach ($searcher_info as $index => $info) {
    $searcher_info[$index]['types'][] = 'user';
  }
}