public function UserUid::query in Zircon Profile 8
Same name in this branch
- 8 core/modules/tracker/src/Plugin/views/filter/UserUid.php \Drupal\tracker\Plugin\views\filter\UserUid::query()
- 8 core/modules/tracker/src/Plugin/views/argument/UserUid.php \Drupal\tracker\Plugin\views\argument\UserUid::query()
- 8 core/modules/comment/src/Plugin/views/filter/UserUid.php \Drupal\comment\Plugin\views\filter\UserUid::query()
- 8 core/modules/comment/src/Plugin/views/argument/UserUid.php \Drupal\comment\Plugin\views\argument\UserUid::query()
Same name and namespace in other branches
- 8.0 core/modules/tracker/src/Plugin/views/argument/UserUid.php \Drupal\tracker\Plugin\views\argument\UserUid::query()
Set up the query for this argument.
The argument sent may be found at $this->argument.
Overrides UserUid::query
File
- core/
modules/ tracker/ src/ Plugin/ views/ argument/ UserUid.php, line 24 - Contains \Drupal\tracker\Plugin\views\argument\UserUid.
Class
- UserUid
- UID argument to check for nodes that user posted or commented on.
Namespace
Drupal\tracker\Plugin\views\argumentCode
public function query($group_by = FALSE) {
// Because this handler thinks it's an argument for a field on the {node}
// table, we need to make sure {tracker_user} is JOINed and use its alias
// for the WHERE clause.
$tracker_user_alias = $this->query
->ensureTable('tracker_user');
$this->query
->addWhere(0, "{$tracker_user_alias}.uid", $this->argument);
}