gradient_server-1.0.x-dev/modules/source/src/SourceListBuilder.php
modules/source/src/SourceListBuilder.php
<?php
namespace Drupal\source;
use Drupal\Core\Entity\EntityInterface;
use Drupal\Core\Entity\EntityListBuilder;
use Drupal\Core\Link;
/**
* Defines a class to build a listing of Source entities.
*
* @ingroup source
*/
class SourceListBuilder extends EntityListBuilder {
/**
* {@inheritdoc}
*/
public function buildHeader() {
$header['id'] = $this->t('Source ID');
$header['name'] = $this->t('Name');
return $header + parent::buildHeader();
}
/**
* {@inheritdoc}
*/
public function buildRow(EntityInterface $entity) {
/** @var \Drupal\source\Entity\Source $entity */
$row['id'] = $entity->id();
$row['name'] = Link::createFromRoute(
$entity->label(),
'entity.source.canonical',
['source' => $entity->id()]
);
return $row + parent::buildRow($entity);
}
}
