commands-1.x-dev/src/CommandListBuilder.php
src/CommandListBuilder.php
<?php
namespace Drupal\commands;
use Drupal\Core\Datetime\DateFormatterInterface;
use Drupal\Core\Entity\EntityInterface;
use Drupal\Core\Entity\EntityListBuilder;
use Drupal\Core\Entity\EntityStorageInterface;
use Drupal\Core\Entity\EntityTypeInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;
/**
* Provides a list controller for the command entity type.
*/
class CommandListBuilder extends EntityListBuilder {
/**
* The date formatter service.
*
* @var \Drupal\Core\Datetime\DateFormatterInterface
*/
protected $dateFormatter;
/**
* Constructs a new ListBuilder object.
*
* @param \Drupal\Core\Entity\EntityTypeInterface $entity_type
* The entity type definition.
* @param \Drupal\Core\Entity\EntityStorageInterface $storage
* The entity storage class.
* @param \Drupal\Core\Datetime\DateFormatterInterface $date_formatter
* The date formatter service.
*/
public function __construct(EntityTypeInterface $entity_type, EntityStorageInterface $storage, DateFormatterInterface $date_formatter) {
parent::__construct($entity_type, $storage);
$this->dateFormatter = $date_formatter;
}
/**
* {@inheritdoc}
*/
public static function createInstance(ContainerInterface $container, EntityTypeInterface $entity_type) {
return new static(
$entity_type,
$container->get('entity_type.manager')->getStorage($entity_type->id()),
$container->get('date.formatter')
);
}
/**
* @inheritDoc
*/
protected function getEntityIds() {
$query = $this->getStorage()->getQuery()
->accessCheck(TRUE)
->sort('created', 'desc')
;
// Only add the pager if a limit is specified.
if ($this->limit) {
$query->pager($this->limit);
}
return $query->execute();
}
/**
* {@inheritdoc}
*/
public function render() {
$build['table'] = parent::render();
$total = $this->getStorage()
->getQuery()
->accessCheck(FALSE)
->count()
->execute();
$build['summary']['#markup'] = $this->t('Total commands: @total', ['@total' => $total]);
return $build;
}
/**
* {@inheritdoc}
*/
public function buildHeader() {
$header['state'] = $this->t('State');
$header['id'] = $this->t('Command');
$header['uid'] = $this->t('Author');
$header['created'] = $this->t('Created');
// $header['executed'] = $this->t('Executed');
return $header + parent::buildHeader();
}
/**
* {@inheritdoc}
*/
public function buildRow(EntityInterface $entity) {
/** @var \Drupal\commands\CommandInterface $entity */
$row['state']['data'] = $entity->state->view([
'label' => 'hidden'
]);
$row['id']['data']['entity'] = $entity->toLink()->toRenderable();
// $row['id']['data']['command'] = $entity->command->view([
// 'label' => 'hidden'
// ]);
// $row['id']['data']['command']['#prefix'] = '<pre>';
// $row['id']['data']['command']['#suffix'] = '</pre>';
$row['uid']['data'] = [
'#theme' => 'username',
'#account' => $entity->getOwner(),
];
$row['created'] = $this->dateFormatter->format($entity->get('created')->value);
return $row + parent::buildRow($entity);
}
}
