You are here

public function Current::query in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/user/src/Plugin/views/filter/Current.php \Drupal\user\Plugin\views\filter\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 BooleanOperator::query

File

core/modules/user/src/Plugin/views/filter/Current.php, line 32
Contains \Drupal\user\Plugin\views\filter\Current.

Class

Current
Filter handler for the current user.

Namespace

Drupal\user\Plugin\views\filter

Code

public function query() {
  $this
    ->ensureMyTable();
  $field = $this->tableAlias . '.' . $this->realField . ' ';
  $or = db_or();
  if (empty($this->value)) {
    $or
      ->condition($field, '***CURRENT_USER***', '<>');
    if ($this->accept_null) {
      $or
        ->isNull($field);
    }
  }
  else {
    $or
      ->condition($field, '***CURRENT_USER***', '=');
  }
  $this->query
    ->addWhere($this->options['group'], $or);
}