support-2.0.x-dev/modules/support_ticket/src/SupportTicketTypeListBuilder.php
modules/support_ticket/src/SupportTicketTypeListBuilder.php
<?php
namespace Drupal\support_ticket;
use Drupal\Core\Config\Entity\ConfigEntityListBuilder;
use Drupal\Core\StringTranslation\StringTranslationTrait;
use Drupal\Core\Url;
use Drupal\Core\Entity\EntityInterface;
/**
* Defines a class to build a listing of support ticket type entities.
*
* @see \Drupal\support_ticket\Entity\SupportTicketType
*/
class SupportTicketTypeListBuilder extends ConfigEntityListBuilder {
use StringTranslationTrait;
/**
* {@inheritdoc}
*/
public function buildHeader(): array {
$header['title'] = $this->t('Name');
$header['description'] = [
'data' => $this->t('Description'),
'class' => [RESPONSIVE_PRIORITY_MEDIUM],
];
return $header + parent::buildHeader();
}
/**
* {@inheritdoc}
*/
public function buildRow(EntityInterface $entity): array {
$row['title'] = [
'data' => $entity->label(),
'class' => ['menu-label'],
];
$row['description']['data'] = ['#markup' => $entity->getEntityTypeId()];
return $row + parent::buildRow($entity);
}
/**
* {@inheritdoc}
*/
public function getDefaultOperations(EntityInterface $entity): array {
$operations = parent::getDefaultOperations($entity);
// Place the edit operation after the operations added by field_ui.module
// which have the weights 15, 20, 25.
if (isset($operations['edit'])) {
$operations['edit']['weight'] = 30;
}
return $operations;
}
/**
* {@inheritdoc}
*/
public function render(): array {
$build = parent::render();
$build['table']['#empty'] = $this->t(
'No support ticket types available. <a href="@link">Add support ticket type</a>.',
['@link' => Url::fromRoute('support_ticket.type_add')->toString()]
);
return $build;
}
}
