ContentTypeConfigListBuilder.php in Content Planner 8
File
modules/content_calendar/src/ContentTypeConfigListBuilder.php
View source
<?php
namespace Drupal\content_calendar;
use Drupal\Core\Config\Entity\ConfigEntityListBuilder;
use Drupal\Core\Entity\EntityInterface;
class ContentTypeConfigListBuilder extends ConfigEntityListBuilder {
public function buildHeader() {
$header['label'] = $this
->t('Content Type Config');
$header['id'] = $this
->t('Machine name');
return $header + parent::buildHeader();
}
public function buildRow(EntityInterface $entity) {
$row['label'] = $entity
->label();
$row['id'] = $entity
->id();
return $row + parent::buildRow($entity);
}
}