NcsLastUpdated.php

Definition of Drupal\comment\Plugin\views\field\NcsLastUpdated.

Namespace

Drupal\comment\Plugin\views\field

File

drupal/core/modules/comment/lib/Drupal/comment/Plugin/views/field/NcsLastUpdated.php
View source
<?php

/**
 * @file
 * Definition of Drupal\comment\Plugin\views\field\NcsLastUpdated.
 */
namespace Drupal\comment\Plugin\views\field;

use Drupal\views\Plugin\views\field\Date;
use Drupal\Component\Annotation\PluginID;

/**
 * Field handler to display the newer of last comment / node updated.
 *
 * @ingroup views_field_handlers
 *
 * @PluginID("comment_ncs_last_updated")
 */
class NcsLastUpdated extends Date {
  public function query() {
    $this
      ->ensureMyTable();
    $this->node_table = $this->query
      ->ensure_table('node', $this->relationship);
    $this->field_alias = $this->query
      ->addField(NULL, "GREATEST(" . $this->node_table . ".changed, " . $this->tableAlias . ".last_comment_timestamp)", $this->tableAlias . '_' . $this->field);
  }

}

Classes

Namesort descending Description
NcsLastUpdated Field handler to display the newer of last comment / node updated.