function apachesolr_multisitesearch_apachesolr_delete_index_alter in Apache Solr Multisite Search 6
Same name and namespace in other branches
- 6.2 apachesolr_multisitesearch.module \apachesolr_multisitesearch_apachesolr_delete_index_alter()
 
Implementation of hook_apachesolr_delete_index_alter()
File
- ./
apachesolr_multisitesearch.module, line 462  - Provides a multi-site search implementation for use with the Apache Solr module
 
Code
function apachesolr_multisitesearch_apachesolr_delete_index_alter(&$query) {
  // Limit to the current site.
  $query = "({$query}) AND hash:" . apachesolr_site_hash();
}