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

Breadcrumb

  1. Drupal Core 11.1.x

StatisticsLastUpdated.php

Same filename in this branch
  1. 11.1.x core/modules/comment/src/Plugin/views/filter/StatisticsLastUpdated.php
  2. 11.1.x core/modules/comment/src/Plugin/views/field/StatisticsLastUpdated.php

Namespace

Drupal\comment\Plugin\views\sort

File

core/modules/comment/src/Plugin/views/sort/StatisticsLastUpdated.php

View source
<?php

namespace Drupal\comment\Plugin\views\sort;

use Drupal\views\Attribute\ViewsSort;
use Drupal\views\Plugin\views\sort\Date;

/**
 * Sort handler for the newer of last comment / entity updated.
 *
 * @ingroup views_sort_handlers
 */
class StatisticsLastUpdated extends Date {
    
    /**
     * The node table.
     */
    // phpcs:ignore Drupal.NamingConventions.ValidVariableName.LowerCamelName, Drupal.Commenting.VariableComment.Missing
    protected ?string $node_table;
    
    /**
     * The field alias.
     */
    // phpcs:ignore Drupal.NamingConventions.ValidVariableName.LowerCamelName, Drupal.Commenting.VariableComment.Missing
    protected string $field_alias;
    public function query() {
        $this->ensureMyTable();
        $this->node_table = $this->query
            ->ensureTable('node', $this->relationship);
        $this->field_alias = $this->query
            ->addOrderBy(NULL, "GREATEST(" . $this->node_table . ".changed, " . $this->tableAlias . ".last_comment_timestamp)", $this->options['order'], $this->tableAlias . '_' . $this->field);
    }

}

Classes

Title Deprecated Summary
StatisticsLastUpdated Sort handler for the newer of last comment / entity updated.

API Navigation

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