Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. StatisticsLastUpdated.php

function StatisticsLastUpdated::query

Same name in this branch
  1. 11.1.x core/modules/comment/src/Plugin/views/sort/StatisticsLastUpdated.php \Drupal\comment\Plugin\views\sort\StatisticsLastUpdated::query()
  2. 11.1.x core/modules/comment/src/Plugin/views/filter/StatisticsLastUpdated.php \Drupal\comment\Plugin\views\filter\StatisticsLastUpdated::query()

Overrides FieldPluginBase::query

File

core/modules/comment/src/Plugin/views/field/StatisticsLastUpdated.php, line 22

Class

StatisticsLastUpdated
Field handler to display the newer of last comment / node updated.

Namespace

Drupal\comment\Plugin\views\field

Code

public function query() {
    $this->ensureMyTable();
    $this->node_table = $this->query
        ->ensureTable('node_field_data', $this->relationship);
    $this->field_alias = $this->query
        ->addField(NULL, "GREATEST(" . $this->node_table . ".changed, " . $this->tableAlias . ".last_comment_timestamp)", $this->tableAlias . '_' . $this->field);
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal