function views_handler_filter_group_by_numeric::query
Overrides views_handler_filter_numeric::query
File
-
handlers/
views_handler_filter_group_by_numeric.inc, line 18
Class
- views_handler_filter_group_by_numeric
- Simple filter to handle greater than/less than filters.
Code
public function query() {
$this->ensure_my_table();
$field = $this->get_field();
$info = $this->operators();
if (!empty($info[$this->operator]['method'])) {
$this->{$info[$this->operator]['method']}($field);
}
}