public function ProductBundleListBuilder::buildRow in Commerce Product Bundle 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/ProductBundleListBuilder.php, line 31 
Class
- ProductBundleListBuilder
- Defines a class to build a listing of product bundle entities.
Namespace
Drupal\commerce_product_bundleCode
public function buildRow(EntityInterface $entity) {
  /** @var \Drupal\commerce_product_bundle\Entity\ProductBundle $entity */
  $row['id'] = $entity
    ->id();
  $row['name'] = Link::fromTextAndUrl($entity
    ->label(), new Url('entity.commerce_product_bundle.edit_form', [
    'commerce_product_bundle' => $entity
      ->id(),
  ]));
  return $row + parent::buildRow($entity);
}