ds-8.x-3.9/src/Plugin/DsField/Comment/CommentPostDate.php
src/Plugin/DsField/Comment/CommentPostDate.php
<?php
namespace Drupal\ds\Plugin\DsField\Comment;
use Drupal\Core\StringTranslation\TranslatableMarkup;
use Drupal\ds\Attribute\DsField;
use Drupal\ds\Plugin\DsField\Date;
/**
* Plugin that renders the post date of a comment.
*/
#[DsField(
id: 'comment_post_date',
title: new TranslatableMarkup('Post date'),
entity_type: 'comment',
provider: 'comment'
)]
class CommentPostDate extends Date {
/**
* Returns the entity render key for this field.
*/
public function getRenderKey() {
return 'created';
}
}
