EckEntityTypeListBuilder.php in Entity Construction Kit (ECK) 8
File
src/Controller/EckEntityTypeListBuilder.php
View source
<?php
namespace Drupal\eck\Controller;
use Drupal\Core\Config\Entity\ConfigEntityListBuilder;
use Drupal\Core\Entity\EntityInterface;
use Drupal\Core\Entity\EntityTypeInterface;
use Drupal\Core\Url;
use Drupal\eck\EckEntityTypeBundleInfo;
use Symfony\Component\DependencyInjection\ContainerInterface;
use Drupal\Core\Entity\EntityTypeManagerInterface;
class EckEntityTypeListBuilder extends ConfigEntityListBuilder {
protected $entityTypeManager;
protected $eckBundleInfo;
public static function createInstance(ContainerInterface $container, EntityTypeInterface $entity_type) {
return new static($entity_type, $container
->get('entity_type.manager'), $container
->get('eck.entity_type.bundle.info'));
}
public function __construct(EntityTypeInterface $entity_type, EntityTypeManagerInterface $entity_type_manager, EckEntityTypeBundleInfo $bundle_info) {
$storage = $entity_type_manager
->getStorage($entity_type
->id());
parent::__construct($entity_type, $storage);
$this->entityTypeManager = $entity_type_manager;
$this->eckBundleInfo = $bundle_info;
}
public function buildHeader() {
$header['label'] = $this
->t('Entity Type');
$header['machine_name'] = $this
->t('Machine Name');
return $header + parent::buildHeader();
}
public function buildRow(EntityInterface $entity) {
$row['label'] = $entity
->label();
$row['machine_name'] = $entity
->id();
if (!$this->eckBundleInfo
->entityTypeHasBundles($entity
->id())) {
$row['operations']['data']['#links']['add_bundle'] = [
'title' => $this
->t('Add bundle'),
'url' => new Url('eck.entity.' . $entity
->id() . '_type.add'),
];
}
else {
$row['operations']['data']['#links']['add_content'] = [
'title' => $this
->t('Add content'),
'url' => new Url('eck.entity.add_page', [
'eck_entity_type' => $entity
->id(),
]),
];
if ($this->eckBundleInfo
->entityTypeBundleCount($entity
->id()) === 1) {
$bundle_machine_names = $this->eckBundleInfo
->getEntityTypeBundleMachineNames($entity
->id());
$arguments = [
'eck_entity_type' => $entity
->id(),
'eck_entity_bundle' => reset($bundle_machine_names),
];
$row['operations']['data']['#links']['add_content']['url'] = new Url('eck.entity.add', $arguments);
}
$contentExists = (bool) $this->entityTypeManager
->getStorage($entity
->id())
->getQuery()
->accessCheck(FALSE)
->range(0, 1)
->execute();
if ($contentExists) {
$row['operations']['data']['#links']['content_list'] = [
'title' => $this
->t('Content list'),
'url' => new Url('eck.entity.' . $entity
->id() . '.list'),
];
}
}
$row['operations']['data']['#links']['bundle_list'] = [
'title' => $this
->t('Bundle list'),
'url' => new Url('eck.entity.' . $entity
->id() . '_type.list'),
];
return array_merge_recursive($row, parent::buildRow($entity));
}
}