function apachesolr_search_conditions in Apache Solr Search 6.3
Same name and namespace in other branches
- 8 apachesolr_search.module \apachesolr_search_conditions()
- 7 apachesolr_search.module \apachesolr_search_conditions()
The default conditions callback.
File
- ./
apachesolr_search.module, line 891 - Provides a content search implementation for node content for use with the Apache Solr search application.
Code
function apachesolr_search_conditions() {
//get default conditions from the core_search
$search_page = apachesolr_search_page_load('core_search');
$conditions = apachesolr_search_conditions_default($search_page);
return $conditions;
}