function apachesolr_views_query::remove_query_field in Apache Solr Views 6
remove a query field
Parameters
$field_name: the name of the field in the schema
File
- ./
apachesolr_views_query.inc, line 909
Class
- apachesolr_views_query
- Class for handling a view that gets its data not from the database, but from a Solr server.
Code
function remove_query_field($field_name) {
unset($this->_query_fields[$field_name]);
}