You are here

function views_handler_filter_user_current::query in Views (for Drupal 7) 6.2

Same name and namespace in other branches
  1. 6.3 modules/user/views_handler_filter_user_current.inc \views_handler_filter_user_current::query()
  2. 7.3 modules/user/views_handler_filter_user_current.inc \views_handler_filter_user_current::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_boolean_operator::query

File

modules/user/views_handler_filter_user_current.inc, line 12

Class

views_handler_filter_user_current
Filter handler for the current user

Code

function query() {
  $this
    ->ensure_my_table();
  $where = "{$this->table_alias}.{$this->real_field} ";
  if (empty($this->value)) {
    $where .= '<> ***CURRENT_USER***';
    if ($this->accept_null) {
      $where = '(' . $where . " OR {$this->table_alias}.{$this->real_field} IS NULL)";
    }
  }
  else {
    $where .= '= ***CURRENT_USER***';
  }
  $this->query
    ->add_where($this->options['group'], $where);
}