You are here

function views_handler_filter_string_compare::query in Amazon Product Advertisement API 6

Same name and namespace in other branches
  1. 7.2 includes/views_handler_filter_string_compare.inc \views_handler_filter_string_compare::query()
  2. 7 includes/views_handler_filter_string_compare.inc \views_handler_filter_string_compare::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

includes/views_handler_filter_string_compare.inc, line 217

Class

views_handler_filter_string_compare
Basic textfield filter to handle string filtering commands including equality, like, not like, etc.

Code

function query() {
  $this
    ->ensure_my_table();
  $field = "{$this->table_alias}.{$this->real_field}";
  $upper = $this
    ->case_transform();
  $info = $this
    ->operators();
  if (!empty($info[$this->operator]['method'])) {
    $this
      ->{$info[$this->operator]['method']}($field, $upper);
  }
}