1 views_handler_filter_group_by_numeric.inc | views_handler_filter_group_by_numeric::op_simple($field) |
Overrides views_handler_filter_numeric::op_simple
File
- core/
modules/ views/ handlers/ views_handler_filter_group_by_numeric.inc, line 34 - Definition of views_handler_filter_group_by_numeric.
Class
- views_handler_filter_group_by_numeric
- Simple filter to handle greater than/less than filters
Code
function op_simple($field) {
$placeholder = $this->placeholder();
$this->query->add_having_expression($this->options['group'], "$field $this->operator $placeholder", array($placeholder => $this->value['value']));
}