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