CommentPostActivityFormatter.php in Open Social 10.2.x
Same filename and directory in other branches
- 8.9 modules/social_features/social_post/src/Plugin/Field/FieldFormatter/CommentPostActivityFormatter.php
- 8.6 modules/social_features/social_post/src/Plugin/Field/FieldFormatter/CommentPostActivityFormatter.php
- 8.7 modules/social_features/social_post/src/Plugin/Field/FieldFormatter/CommentPostActivityFormatter.php
- 8.8 modules/social_features/social_post/src/Plugin/Field/FieldFormatter/CommentPostActivityFormatter.php
- 10.3.x modules/social_features/social_post/src/Plugin/Field/FieldFormatter/CommentPostActivityFormatter.php
- 10.0.x modules/social_features/social_post/src/Plugin/Field/FieldFormatter/CommentPostActivityFormatter.php
- 10.1.x modules/social_features/social_post/src/Plugin/Field/FieldFormatter/CommentPostActivityFormatter.php
File
modules/social_features/social_post/src/Plugin/Field/FieldFormatter/CommentPostActivityFormatter.phpView source
<?php
namespace Drupal\social_post\Plugin\Field\FieldFormatter;
use Drupal\Core\Entity\EntityInterface;
use Drupal\comment\CommentInterface;
/**
* Provides a post comment activity formatter.
*
* @FieldFormatter(
* id = "comment_post_activity",
* module = "social_post",
* label = @Translation("Last two comments on post"),
* field_types = {
* "comment"
* },
* quickedit = {
* "editor" = "disabled"
* }
* )
*/
class CommentPostActivityFormatter extends CommentPostFormatter {
/**
* {@inheritdoc}
*
* @see Drupal\comment\CommentStorage::loadThead()
*/
public function loadThread(EntityInterface $entity, $field_name, $mode, $comments_per_page = 0, $pager_id = 0) {
// @todo Refactor this to use CommentDefaultFormatter->loadThread with dependency injection instead.
$query = \Drupal::database()
->select('comment_field_data', 'c');
$query
->addField('c', 'cid');
$query
->condition('c.entity_id', $entity
->id())
->condition('c.entity_type', $entity
->getEntityTypeId())
->condition('c.field_name', $field_name)
->condition('c.default_langcode', 1)
->addTag('entity_access')
->addTag('comment_filter')
->addMetaData('base_table', 'comment')
->addMetaData('entity', $entity)
->addMetaData('field_name', $field_name);
if (!$this->currentUser
->hasPermission('administer comments')) {
$query
->condition('c.status', CommentInterface::PUBLISHED);
}
$query
->orderBy('c.cid', 'DESC');
// Limit The number of results.
if ($comments_per_page) {
$query
->range(0, $comments_per_page);
}
$cids = $query
->execute()
->fetchCol();
$comments = [];
if ($cids) {
krsort($cids);
$comments = $this->storage
->loadMultiple($cids);
}
return $comments;
}
}
Classes
Name | Description |
---|---|
CommentPostActivityFormatter | Provides a post comment activity formatter. |