entity_legal-4.0.x-dev/src/EntityLegalDocumentListBuilder.php
src/EntityLegalDocumentListBuilder.php
<?php
declare(strict_types=1);
namespace Drupal\entity_legal;
use Drupal\Core\Config\Entity\ConfigEntityListBuilder;
use Drupal\Core\Entity\EntityInterface;
use Drupal\Core\Link;
/**
* Defines a class to build a listing of entity legal document entities.
*
* @see \Drupal\entity_legal\Entity\EntityLegalDocument
*/
class EntityLegalDocumentListBuilder extends ConfigEntityListBuilder {
/**
* {@inheritdoc}
*/
public function buildHeader(): array {
$header['label'] = $this->t('Label');
return $header + parent::buildHeader();
}
/**
* {@inheritdoc}
*/
public function buildRow(EntityInterface $entity): array {
$label = Link::createFromRoute($entity->label(), 'entity.entity_legal_document.canonical', [
'entity_legal_document' => $entity->id(),
])->toString();
$row['label'] = $this->t('@label <small>(Machine name: @id)</small>', [
'@label' => $label,
'@id' => $entity->id(),
]);
return $row + parent::buildRow($entity);
}
}
