function views_handler_filter_numeric::query

Overrides views_handler_filter::query

2 methods override views_handler_filter_numeric::query()
views_handler_filter_group_by_numeric::query in handlers/views_handler_filter_group_by_numeric.inc
Add this filter to the query.
views_handler_filter_ncs_last_updated::query in modules/comment/views_handler_filter_ncs_last_updated.inc
Add this filter to the query.

File

handlers/views_handler_filter_numeric.inc, line 286

Class

views_handler_filter_numeric
Simple filter to handle greater than/less than filters.

Code

public function query() {
    $this->ensure_my_table();
    $field = "{$this->table_alias}.{$this->real_field}";
    $info = $this->operators();
    if (!empty($info[$this->operator]['method'])) {
        $this->{$info[$this->operator]['method']}($field);
    }
}