function apachesolr_search_search_execute in Apache Solr Search 6.3
Same name and namespace in other branches
- 8 apachesolr_search.module \apachesolr_search_search_execute()
- 7 apachesolr_search.module \apachesolr_search_search_execute()
Helper function to retrieve results
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
1 call to apachesolr_search_search_execute()
File
- ./
apachesolr_search.module, line 882 - Provides a content search implementation for node content for use with the Apache Solr search application.
Code
function apachesolr_search_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;
}