You are here

public function NodeNewComments::query in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/comment/src/Plugin/views/field/NodeNewComments.php \Drupal\comment\Plugin\views\field\NodeNewComments::query()

Called to add the field to a query.

Overrides FieldPluginBase::query

File

core/modules/comment/src/Plugin/views/field/NodeNewComments.php, line 138

Class

NodeNewComments
Field handler to display the number of new comments.

Namespace

Drupal\comment\Plugin\views\field

Code

public function query() {
  $this
    ->ensureMyTable();
  $this
    ->addAdditionalFields();
  $this->field_alias = $this->table . '_' . $this->field;
}