public function NcsLastUpdated::query in Views (for Drupal 7) 8.3
Same name in this branch
- 8.3 lib/Views/comment/Plugin/views/filter/NcsLastUpdated.php \Views\comment\Plugin\views\filter\NcsLastUpdated::query()
- 8.3 lib/Views/comment/Plugin/views/sort/NcsLastUpdated.php \Views\comment\Plugin\views\sort\NcsLastUpdated::query()
- 8.3 lib/Views/comment/Plugin/views/field/NcsLastUpdated.php \Views\comment\Plugin\views\field\NcsLastUpdated::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 Numeric::query
File
- lib/
Views/ comment/ Plugin/ views/ filter/ NcsLastUpdated.php, line 25 - Definition of Views\comment\Plugin\views\filter\NcsLastUpdated.
Class
- NcsLastUpdated
- Filter handler for the newer of last comment / node updated.
Namespace
Views\comment\Plugin\views\filterCode
public function query() {
$this
->ensureMyTable();
$this->node_table = $this->query
->ensure_table('node', $this->relationship);
$field = "GREATEST(" . $this->node_table . ".changed, " . $this->tableAlias . ".last_comment_timestamp)";
$info = $this
->operators();
if (!empty($info[$this->operator]['method'])) {
$this
->{$info[$this->operator]['method']}($field);
}
}