You are here

ActiveTopicsBlock.php in Drupal 10

File

core/modules/forum/src/Plugin/Block/ActiveTopicsBlock.php
View source
<?php

namespace Drupal\forum\Plugin\Block;

use Drupal\Core\Database\Database;

/**
 * Provides an 'Active forum topics' block.
 *
 * @Block(
 *   id = "forum_active_block",
 *   admin_label = @Translation("Active forum topics"),
 *   category = @Translation("Lists (Views)")
 * )
 */
class ActiveTopicsBlock extends ForumBlockBase {

  /**
   * {@inheritdoc}
   */
  protected function buildForumQuery() {
    return Database::getConnection()
      ->select('forum_index', 'f')
      ->fields('f')
      ->addTag('node_access')
      ->addMetaData('base_table', 'forum_index')
      ->orderBy('f.last_comment_timestamp', 'DESC')
      ->range(0, $this->configuration['block_count']);
  }

}

Classes

Namesort descending Description
ActiveTopicsBlock Provides an 'Active forum topics' block.