public function UidRevision::query

Same name in this branch
  1. 8.x drupal/core/modules/node/lib/Drupal/node/Plugin/views/argument/UidRevision.php \Drupal\node\Plugin\views\argument\UidRevision::query()
  2. 8.x drupal/core/modules/node/lib/Drupal/node/Plugin/views/filter/UidRevision.php \Drupal\node\Plugin\views\filter\UidRevision::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 InOperator::query

File

drupal/core/modules/node/lib/Drupal/node/Plugin/views/filter/UidRevision.php, line 22
Definition of Drupal\node\Plugin\views\filter\UidRevision.

Class

UidRevision
Filter handler to check for revisions a certain user has created.

Namespace

Drupal\node\Plugin\views\filter

Code

public function query($group_by = FALSE) {
  $this
    ->ensureMyTable();
  $placeholder = $this
    ->placeholder();
  $args = array_values($this->value);
  $this->query
    ->add_where_expression($this->options['group'], "{$this->tableAlias}.uid IN({$placeholder}) OR\n      ((SELECT COUNT(DISTINCT vid) FROM {node_field_revision} nfr WHERE nfr.revision_uid IN ({$placeholder}) AND nfr.nid = {$this->tableAlias}.nid) > 0)", array(
    $placeholder => $args,
  ), $args);
}