UserUid.php

Same filename in this branch
  1. 11.x core/modules/tracker/src/Plugin/views/filter/UserUid.php
  2. 11.x core/modules/tracker/src/Plugin/views/argument/UserUid.php
  3. 11.x core/modules/comment/src/Plugin/views/argument/UserUid.php
Same filename and directory in other branches
  1. 9 core/modules/tracker/src/Plugin/views/filter/UserUid.php
  2. 9 core/modules/tracker/src/Plugin/views/argument/UserUid.php
  3. 9 core/modules/comment/src/Plugin/views/filter/UserUid.php
  4. 9 core/modules/comment/src/Plugin/views/argument/UserUid.php
  5. 8.9.x core/modules/tracker/src/Plugin/views/filter/UserUid.php
  6. 8.9.x core/modules/tracker/src/Plugin/views/argument/UserUid.php
  7. 8.9.x core/modules/comment/src/Plugin/views/filter/UserUid.php
  8. 8.9.x core/modules/comment/src/Plugin/views/argument/UserUid.php
  9. 10 core/modules/tracker/src/Plugin/views/filter/UserUid.php
  10. 10 core/modules/tracker/src/Plugin/views/argument/UserUid.php
  11. 10 core/modules/comment/src/Plugin/views/filter/UserUid.php
  12. 10 core/modules/comment/src/Plugin/views/argument/UserUid.php

Namespace

Drupal\comment\Plugin\views\filter

File

core/modules/comment/src/Plugin/views/filter/UserUid.php

View source
<?php

namespace Drupal\comment\Plugin\views\filter;

use Drupal\Core\Database\Database;
use Drupal\views\Attribute\ViewsFilter;
use Drupal\views\Plugin\views\filter\FilterPluginBase;

/**
 * Filter handler, accepts user ID to check for nodes user posted/commented on.
 *
 * @ingroup views_filter_handlers
 */
class UserUid extends FilterPluginBase {
    public function query() {
        $this->ensureMyTable();
        $subselect = Database::getConnection()->select('comment_field_data', 'c');
        $subselect->addField('c', 'cid');
        $subselect->condition('c.uid', $this->value, $this->operator);
        $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 = $this->view->query
            ->getConnection()
            ->condition('OR')
            ->condition("{$this->tableAlias}.uid", $this->value, $this->operator)
            ->exists($subselect);
        $this->query
            ->addWhere($this->options['group'], $condition);
    }

}

Classes

Title Deprecated Summary
UserUid Filter handler, accepts user ID to check for nodes user posted/commented on.

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