crm_core-8.x-3.x-dev/modules/crm_core_contact/src/IndividualListBuilder.php
modules/crm_core_contact/src/IndividualListBuilder.php
<?php
namespace Drupal\crm_core_contact;
use Drupal\Core\Datetime\DateFormatter;
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;
/**
* List builder for the individual entity.
*/
class IndividualListBuilder extends EntityListBuilder {
/**
* The date formatter service.
*
* @var \Drupal\Core\Datetime\DateFormatter
*/
protected $dateFormatter;
/**
* Constructs a new IndividualListBuilder 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\DateFormatter $date_formatter
* The date formatter service.
*/
public function __construct(EntityTypeInterface $entity_type, EntityStorageInterface $storage, DateFormatter $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}
*/
public function buildHeader() {
$header = [];
$header['label'] = $this->t('Label');
$header['type'] = [
'data' => $this->t('Individual type'),
'class' => [RESPONSIVE_PRIORITY_MEDIUM],
];
$header['status'] = [
'data' => $this->t('Status'),
'class' => [RESPONSIVE_PRIORITY_LOW],
];
$header['changed'] = [
'data' => $this->t('Updated'),
'class' => [RESPONSIVE_PRIORITY_LOW],
];
return $header + parent::buildHeader();
}
/**
* {@inheritdoc}
*/
public function buildRow(EntityInterface $entity) {
$row = [];
$row['label']['data'] = [
'#type' => 'link',
'#title' => $entity->label(),
'#url' => $entity->toUrl(),
];
$row['type'] = $entity->get('type')->entity->label();
$row['status'] = $entity->get('status')->value ? $this->t('Active') : $this->t('Inactive');
$row['changed'] = $this->dateFormatter->format($entity->get('changed')->value, 'short');
return $row + parent::buildRow($entity);
}
/**
* {@inheritdoc}
*/
public function render() {
$build = parent::render();
$build['table']['#empty'] = $this->t('There are no individuals available. Add one now.');
return $build;
}
}
