ai_upgrade_assistant-0.2.0-alpha2/src/Entity/Controller/UpgradeAnalysisListBuilder.php
src/Entity/Controller/UpgradeAnalysisListBuilder.php
<?php
namespace Drupal\ai_upgrade_assistant\Entity\Controller;
use Drupal\Core\Entity\EntityInterface;
use Drupal\Core\Entity\EntityListBuilder;
use Drupal\Core\Datetime\DateFormatterInterface;
use Drupal\Core\Entity\EntityStorageInterface;
use Drupal\Core\Entity\EntityTypeInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;
/**
* Provides a list controller for the Upgrade Analysis entity type.
*/
class UpgradeAnalysisListBuilder extends EntityListBuilder {
/**
* The date formatter service.
*
* @var \Drupal\Core\Datetime\DateFormatterInterface
*/
protected $dateFormatter;
/**
* Constructs a new UpgradeAnalysisListBuilder 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}
*/
public function buildHeader() {
$header['id'] = $this->t('ID');
$header['module_name'] = $this->t('Module');
$header['current_version'] = $this->t('Current Version');
$header['target_version'] = $this->t('Target Version');
$header['status'] = $this->t('Status');
$header['changed'] = $this->t('Last Updated');
return $header + parent::buildHeader();
}
/**
* {@inheritdoc}
*/
public function buildRow(EntityInterface $entity) {
/** @var \Drupal\ai_upgrade_assistant\Entity\UpgradeAnalysis $entity */
$row['id'] = $entity->id();
$row['module_name'] = $entity->get('module_name')->value;
$row['current_version'] = $entity->get('current_version')->value;
$row['target_version'] = $entity->get('target_version')->value;
$row['status'] = $entity->get('status')->value;
$row['changed'] = $this->dateFormatter->format($entity->getChangedTime(), 'short');
return $row + parent::buildRow($entity);
}
}
