function Current::query

Same name and namespace in other branches
  1. 9 core/modules/user/src/Plugin/views/filter/Current.php \Drupal\user\Plugin\views\filter\Current::query()
  2. 8.9.x core/modules/user/src/Plugin/views/filter/Current.php \Drupal\user\Plugin\views\filter\Current::query()
  3. 10 core/modules/user/src/Plugin/views/filter/Current.php \Drupal\user\Plugin\views\filter\Current::query()

Overrides BooleanOperator::query

File

core/modules/user/src/Plugin/views/filter/Current.php, line 30

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 = $this->view->query
    ->getConnection()
    ->condition('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);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.