ds-8.x-3.9/src/Plugin/DsField/Node/NodePostDate.php
src/Plugin/DsField/Node/NodePostDate.php
<?php
namespace Drupal\ds\Plugin\DsField\Node;
use Drupal\Core\StringTranslation\TranslatableMarkup;
use Drupal\ds\Attribute\DsField;
use Drupal\ds\Plugin\DsField\Date;
/**
* Plugin that renders the post date of a node.
*/
#[DsField(
id: 'node_post_date',
title: new TranslatableMarkup('Post date'),
entity_type: 'node',
provider: 'node'
)]
class NodePostDate extends Date {
/**
* {@inheritdoc}
*/
public function getRenderKey() {
return 'created';
}
}
