You are here

public function views_xml_backend_handler_filter_numeric::query in Views XML Backend 7

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

Adds 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.

Overrides views_handler_filter_numeric::query

File

handlers/views_xml_backend_handler_filter_numeric.inc, line 44
Contains views_xml_backend_handler_filter_numeric.

Class

views_xml_backend_handler_filter_numeric
Numeric filter handler for views_xml_backend.

Code

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