apachesolr_views_handler_argument.inc in Apache Solr Views 7
Same filename and directory in other branches
Argument handler for Apache Solr Views.
File
handlers/apachesolr_views_handler_argument.incView source
<?php
/**
* @file
* Argument handler for Apache Solr Views.
*/
class apachesolr_views_handler_argument extends views_handler_argument {
/**
* Set up the query parameters for this argument.
*/
public function query($group_by = FALSE) {
$this->query
->add_where(0, $this->real_field, $this->argument);
}
}
Classes
Name | Description |
---|---|
apachesolr_views_handler_argument | @file Argument handler for Apache Solr Views. |