You are here

function apachesolr_search_conditions in Apache Solr Search 8

Same name and namespace in other branches
  1. 6.3 apachesolr_search.module \apachesolr_search_conditions()
  2. 7 apachesolr_search.module \apachesolr_search_conditions()

Implementation of a search_view() conditions callback.

1 string reference to 'apachesolr_search_conditions'
apachesolr_search_search_info in ./apachesolr_search.module
Implements hook_search_info().

File

./apachesolr_search.module, line 764
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;
}