You are here

function views_xml_backend_handler_filter_numeric::query in Views XML Backend 6

Same name and namespace in other branches
  1. 7 handlers/views_xml_backend_handler_filter_numeric.inc \views_xml_backend_handler_filter_numeric::query()

Add this filter to the query.

Due to the nature of fapi, the value and the operator have an unintended level of indirection. You will find them in $this->operator and $this->value respectively.

File

handlers/views_xml_backend_handler_filter_numeric.inc, line 37
Numeric filter handler for views_xml_backend.

Class

views_xml_backend_handler_filter_numeric
@file Numeric filter handler for views_xml_backend.

Code

function query() {
  $this->query
    ->add_filter($this);
}