function apachesolr_search_noresults in Apache Solr Search 6
Same name and namespace in other branches
- 5.2 apachesolr_search.module \apachesolr_search_noresults()
2 calls to apachesolr_search_noresults()
- apachesolr_search_taxonomy_term_page in ./
apachesolr.taxonomy.inc - Overrides taxonomy/term/X links
- apachesolr_search_view in ./
apachesolr_search.module - Re-implementation of search_view().
2 string references to 'apachesolr_search_noresults'
- apachesolr_search_taxonomy_term_page in ./
apachesolr.taxonomy.inc - Overrides taxonomy/term/X links
- apachesolr_search_view in ./
apachesolr_search.module - Re-implementation of search_view().
File
- ./
apachesolr_search.module, line 194 - Provides a content search implementation for node content for use with the Apache Solr search application.
Code
function apachesolr_search_noresults() {
return t('<ul>
<li>Check if your spelling is correct, or try removing filters.</li>
<li>Remove quotes around phrases to match each word individually: <em>"blue drop"</em> will match less than <em>blue drop</em>.</li>
<li>You can require or exclude terms using + and -: <em>big +blue drop</em> will require a match on <em>blue</em> while <em>big blue -drop</em> will exclude results that contain <em>drop</em>.</li>
</ul>');
}