You are here

public function FlippingBookListBuilder::buildRow in Flipping Book 8

Builds a row for an entity in the entity listing.

Parameters

\Drupal\Core\Entity\EntityInterface $entity: The entity for this row of the list.

Return value

array A render array structure of fields for this entity.

Overrides EntityListBuilder::buildRow

See also

\Drupal\Core\Entity\EntityListBuilder::render()

File

src/FlippingBookListBuilder.php, line 29

Class

FlippingBookListBuilder
Defines a class to build a listing of Flipping Book entities.

Namespace

Drupal\flipping_book

Code

public function buildRow(EntityInterface $entity) {

  /* @var $entity \Drupal\flipping_book\Entity\FlippingBook */
  $row['id'] = $entity
    ->id();
  $row['name'] = Link::createFromRoute($entity
    ->label(), 'entity.flipping_book.edit_form', [
    'flipping_book' => $entity
      ->id(),
  ]);
  $row['type'] = $entity
    ->getTypeLabel();
  return $row + parent::buildRow($entity);
}