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