sgd_dashboard-1.0.0-beta1/src/SgdWebsiteDataListBuilder.php
src/SgdWebsiteDataListBuilder.php
<?php
declare(strict_types=1);
namespace Drupal\sgd_dashboard;
use Drupal\Core\Entity\EntityInterface;
use Drupal\Core\Entity\EntityListBuilder;
/**
* Provides a list controller for the SGD website data entity type.
*/
final class SgdWebsiteDataListBuilder 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\sgd_dashboard\SgdWebsiteDataInterface $entity */
$row['id'] = $entity->id();
$row['label'] = $entity->label();
$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);
}
}
