You are here

public function UserUid::query in Zircon Profile 8

Same name in this branch
  1. 8 core/modules/tracker/src/Plugin/views/filter/UserUid.php \Drupal\tracker\Plugin\views\filter\UserUid::query()
  2. 8 core/modules/tracker/src/Plugin/views/argument/UserUid.php \Drupal\tracker\Plugin\views\argument\UserUid::query()
  3. 8 core/modules/comment/src/Plugin/views/filter/UserUid.php \Drupal\comment\Plugin\views\filter\UserUid::query()
  4. 8 core/modules/comment/src/Plugin/views/argument/UserUid.php \Drupal\comment\Plugin\views\argument\UserUid::query()
Same name and namespace in other branches
  1. 8.0 core/modules/comment/src/Plugin/views/argument/UserUid.php \Drupal\comment\Plugin\views\argument\UserUid::query()

Set up the query for this argument.

The argument sent may be found at $this->argument.

Overrides ArgumentPluginBase::query

1 method overrides UserUid::query()
UserUid::query in core/modules/tracker/src/Plugin/views/argument/UserUid.php
Set up the query for this argument.

File

core/modules/comment/src/Plugin/views/argument/UserUid.php, line 84
Contains \Drupal\comment\Plugin\views\argument\UserUid.

Class

UserUid
Argument handler to accept a user id to check for nodes that user posted or commented on.

Namespace

Drupal\comment\Plugin\views\argument

Code

public function query($group_by = FALSE) {
  $this
    ->ensureMyTable();

  // Use the table definition to correctly add this user ID condition.
  if ($this->table != 'comment_field_data') {
    $subselect = $this->database
      ->select('comment_field_data', 'c');
    $subselect
      ->addField('c', 'cid');
    $subselect
      ->condition('c.uid', $this->argument);
    $entity_id = $this->definition['entity_id'];
    $entity_type = $this->definition['entity_type'];
    $subselect
      ->where("c.entity_id = {$this->tableAlias}.{$entity_id}");
    $subselect
      ->condition('c.entity_type', $entity_type);
    $condition = db_or()
      ->condition("{$this->tableAlias}.uid", $this->argument, '=')
      ->exists($subselect);
    $this->query
      ->addWhere(0, $condition);
  }
}