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