You are here

function currency_handler_filter_currency::query in Currency 7

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

File

includes/views/handlers/currency_handler_filter_currency.inc, line 13
Views filter handler.

Class

currency_handler_filter_currency
@file Views filter handler.

Code

function query() {
  currency_views_preload($this->view);
  return parent::query();
}