notification_popin-1.2.2/src/NotificationListBuilder.php
src/NotificationListBuilder.php
<?php declare(strict_types = 1);
namespace Drupal\notification_popin;
use Drupal\Core\Entity\EntityInterface;
use Drupal\Core\Entity\EntityListBuilder;
/**
* Provides a list controller for the notification entity type.
*/
final class NotificationListBuilder extends EntityListBuilder {
/**
* {@inheritdoc}
*/
public function buildHeader(): array {
$header['id'] = $this->t('ID');
$header['label'] = $this->t('Label');
$header['status'] = $this->t('Status');
$header['uid'] = $this->t('Author');
$header['created'] = $this->t('Created');
$header['changed'] = $this->t('Updated');
return $header + parent::buildHeader();
}
/**
* {@inheritdoc}
*/
public function buildRow(EntityInterface $entity): array {
/** @var \Drupal\notification_popin\NotificationInterface $entity */
$row['id'] = $entity->id();
$row['label'] = $entity->toLink();
$row['status'] = $entity->get('status')->value ? $this->t('Enabled') : $this->t('Disabled');
$username_options = [
'label' => 'hidden',
'settings' => ['link' => $entity->get('uid')->entity->isAuthenticated()],
];
$row['uid']['data'] = $entity->get('uid')->view($username_options);
$row['created']['data'] = $entity->get('created')->view(['label' => 'hidden']);
$row['changed']['data'] = $entity->get('changed')->view(['label' => 'hidden']);
return $row + parent::buildRow($entity);
}
}
