You are here

public function views_xml_backend_handler_filter::query in Views XML Backend 7

Same name and namespace in other branches
  1. 6 handlers/views_xml_backend_handler_filter.inc \views_xml_backend_handler_filter::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.

Overrides views_handler_filter_string::query

File

handlers/views_xml_backend_handler_filter.inc, line 152
Contains views_xml_backend_handler_filter.

Class

views_xml_backend_handler_filter
Base filter handler for views_xml_backend.

Code

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