activity_stream-1.0.x-dev/src/ActivityListBuilder.php
src/ActivityListBuilder.php
<?php declare(strict_types = 1);
namespace Drupal\activity_stream;
use Drupal\Core\Entity\EntityInterface;
use Drupal\Core\Entity\EntityListBuilder;
/**
* Provides a list controller for the activity entity type.
*/
final class ActivityListBuilder extends EntityListBuilder {
/**
* {@inheritdoc}
*/
public function buildHeader(): array {
$header['id'] = $this->t('ID');
$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\activity_stream\ActivityInterface $entity */
$row['id'] = $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);
}
}
