library_management_system-1.0.1/src/LmsBookAuthorListBuilder.php
src/LmsBookAuthorListBuilder.php
<?php
namespace Drupal\library_management_system;
use Drupal\Core\Entity\EntityInterface;
use Drupal\Core\Entity\EntityListBuilder;
use Drupal\Core\Link;
/**
* Defines a class to build a listing of LmsBookAuthor entities.
*
* @ingroup library_management_system
*/
class LmsBookAuthorListBuilder extends EntityListBuilder {
/**
* {@inheritdoc}
*/
public function buildHeader() {
$header['id'] = $this->t('Book Author ID');
$header['name'] = $this->t('Name');
return $header + parent::buildHeader();
}
/**
* {@inheritdoc}
*/
public function buildRow(EntityInterface $entity) {
/* @var $entity \Drupal\library_management_system\Entity\LmsBookAuthor */
$row['id'] = $entity->id();
$row['name'] = Link::createFromRoute(
$entity->label(),
'entity.lmsbookauthor.edit_form',
['lmsbookauthor' => $entity->id()]
);
return $row + parent::buildRow($entity);
}
}
