1 views_handler_filter.inc | views_handler_filter::query() |
Add this filter to the query.
Due to the nature of Form API, the value and the operator have an unintended level of indirection. You will find them in $this->operator and $this->value respectively.
File
- core/
modules/ views/ handlers/ views_handler_filter.inc, line 1384 - @todo.
Class
- views_handler_filter
- Base class for filters.
Code
function query() {
$this->ensure_my_table();
$this->query->add_where($this->options['group'], "$this->table_alias.$this->real_field", $this->value, $this->operator);
}