You are here

public function views_handler_filter_string::query in Views (for Drupal 7) 7.3

Same name and namespace in other branches
  1. 6.3 handlers/views_handler_filter_string.inc \views_handler_filter_string::query()
  2. 6.2 handlers/views_handler_filter_string.inc \views_handler_filter_string::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::query

1 method overrides views_handler_filter_string::query()
views_handler_filter_combine::query in handlers/views_handler_filter_combine.inc
Add this filter to the query.

File

handlers/views_handler_filter_string.inc, line 262
Definition of views_handler_filter_string.

Class

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

Code

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