function apachesolr_user_search_execute in Apachesolr User 7
Implements hook_search_execute().
Parameters
$keys: The keys that are available after the path that is defined in hook_search_info
$conditions: Conditions that are coming from apachesolr_search_conditions
File
- ./
apachesolr_user.module, line 161 - Indexer for the user entities for the Apachesolr module.
Code
function apachesolr_user_search_execute($keys = NULL, $conditions = NULL) {
$search_page = apachesolr_search_page_load('core_search');
$results = apachesolr_search_search_results($keys, $conditions, $search_page);
return $results;
}