entity_generic-8.x-3.x-dev/src/GenericListBuilder.php
src/GenericListBuilder.php
<?php
namespace Drupal\entity_generic;
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 Drupal\Core\Entity\Query\QueryFactory;
use Drupal\Core\Routing\RedirectDestinationInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;
/**
* Defines a class to build a listing of entities.
*/
class GenericListBuilder extends EntityListBuilder {
/**
* The entity query factory.
*
* @var \Drupal\Core\Entity\Query\QueryFactory
*/
protected $queryFactory;
/**
* The date formatter service.
*
* @var \Drupal\Core\Datetime\DateFormatterInterface
*/
protected $dateFormatter;
/**
* The redirect destination service.
*
* @var \Drupal\Core\Routing\RedirectDestinationInterface
*/
protected $redirectDestination;
/**
* Creates a class instance.
*
* @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.
* @param \Drupal\Core\Routing\RedirectDestinationInterface $redirect_destination
* The redirect destination service.
*/
public function __construct(EntityTypeInterface $entity_type, EntityStorageInterface $storage, DateFormatterInterface $date_formatter, RedirectDestinationInterface $redirect_destination) {
parent::__construct($entity_type, $storage);
$storage->setEntityType($entity_type);
$this->queryFactory = $storage->getQuery();
$this->dateFormatter = $date_formatter;
$this->redirectDestination = $redirect_destination;
}
/**
* {@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'),
$container->get('redirect.destination')
);
}
/**
* {@inheritdoc}
*/
public function buildHeader() {
$header = [
'id' => [
'data' => $this->t('ID'),
'field' => 'id',
'specifier' => 'id',
],
'created' => [
'data' => $this->t('Created'),
'class' => [RESPONSIVE_PRIORITY_LOW],
'field' => 'created',
'specifier' => 'created',
],
'changed' => [
'data' => $this->t('Changed'),
'class' => [RESPONSIVE_PRIORITY_LOW],
'field' => 'changed',
'specifier' => 'changed',
],
];
return $header + parent::buildHeader();
}
/**
* {@inheritdoc}
*/
public function buildRow(EntityInterface $entity) {
$row['id'] = $entity->id();
$row['created'] = $this->dateFormatter->format($entity->getCreatedTime(), 'short');
$row['changed'] = $this->dateFormatter->format($entity->getChangedTime(), 'short');
return $row + parent::buildRow($entity);
}
/**
* {@inheritdoc}
*/
public function getOperations(EntityInterface $entity) {
$operations = parent::getOperations($entity);
if (isset($operations['edit'])) {
$destination = $this->redirectDestination->getAsArray();
$operations['edit']['query'] = $destination;
}
return $operations;
}
/**
* {@inheritdoc}
*/
public function render() {
$build = parent::render();
$build['table']['#empty'] = $this->t('There are no entities available.');
return $build;
}
/**
* Helper function to insert element before specific element.
*
* @param array $array
* Source array.
* @param int|string $key
* Insert position.
* @param mixed $insert
* Data to insert.
*/
protected function arrayInsert(array &$array, $key, $insert) {
if (is_int($key)) {
array_splice($array, $key, 0, $insert);
}
else {
$position = array_search($key, array_keys($array));
$array = array_merge(array_slice($array, 0, $position), $insert, array_slice($array, $position));
}
}
}
