content_planner-8.x-1.x-dev/modules/content_calendar/src/ContentTypeConfigListBuilder.php
modules/content_calendar/src/ContentTypeConfigListBuilder.php
<?php
namespace Drupal\content_calendar;
use Drupal\Core\Config\Entity\ConfigEntityListBuilder;
use Drupal\Core\Entity\EntityInterface;
/**
* Provides a listing of Content Type Config entities.
*/
class ContentTypeConfigListBuilder extends ConfigEntityListBuilder {
/**
* {@inheritdoc}
*/
public function buildHeader() {
$header['label'] = $this->t('Content Type Config');
$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);
}
}
