EventSeriesListBuilder.php in Booking and Availability Management Tools for Drupal 8
File
modules/bat_event_series/src/EventSeriesListBuilder.php
View source
<?php
namespace Drupal\bat_event_series;
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;
class EventSeriesListBuilder extends EntityListBuilder {
public function __construct(EntityTypeInterface $entity_type, EntityStorageInterface $storage) {
parent::__construct($entity_type, $storage);
}
public static function createInstance(ContainerInterface $container, EntityTypeInterface $entity_type) {
return new static($entity_type, $container
->get('entity_type.manager')
->getStorage($entity_type
->id()));
}
public function buildHeader() {
$header = [
'id' => [
'data' => $this
->t('Event ID'),
'field' => 'id',
'specifier' => 'id',
'class' => [
RESPONSIVE_PRIORITY_LOW,
],
],
'label' => [
'data' => $this
->t('Label'),
'field' => 'label',
'specifier' => 'label',
'class' => [
RESPONSIVE_PRIORITY_LOW,
],
],
'rrule' => [
'data' => $this
->t('RRule'),
'field' => 'rrule',
'specifier' => 'rrule',
'class' => [
RESPONSIVE_PRIORITY_LOW,
],
],
];
return $header + parent::buildHeader();
}
public function buildRow(EntityInterface $entity) {
$row['id'] = $entity
->id();
$row['label'] = $entity
->label();
$row['rrule'] = $entity
->getRRule();
return $row + parent::buildRow($entity);
}
}