merci-8.x-2.x-dev/modules/merci_line_item/src/MerciLineItemTypeListBuilder.php
modules/merci_line_item/src/MerciLineItemTypeListBuilder.php
<?php
namespace Drupal\merci_line_item;
use Drupal\Core\Config\Entity\ConfigEntityListBuilder;
use Drupal\Core\Entity\EntityInterface;
/**
* Provides a listing of Merci Line Item type entities.
*/
class MerciLineItemTypeListBuilder extends ConfigEntityListBuilder {
/**
* {@inheritdoc}
*/
public function buildHeader() {
$header['label'] = $this->t('Merci Line Item type');
$header['id'] = $this->t('Machine name');
return $header + parent::buildHeader();
}
/**
* {@inheritdoc}
*/
public function buildRow(EntityInterface $entity) {
$row['label'] = $entity->label();
$row['id'] = $entity->id();
// You probably want a few more properties here...
return $row + parent::buildRow($entity);
}
}
