public function apachesolr_views_query::set_query in Apache Solr Views 6
This function sets the query string
Parameters
string $query: plain text typed in search query
Return value
none
1 call to apachesolr_views_query::set_query()
- apachesolr_views_query::get_path in ./
apachesolr_views_query.inc - return the search path
File
- ./
apachesolr_views_query.inc, line 537
Class
- apachesolr_views_query
- Class for handling a view that gets its data not from the database, but from a Solr server.
Code
public function set_query($query) {
return $this->_query = $query;
}