You are here

ProductBundleItemTypeListBuilder.php in Commerce Product Bundle 8

File

src/ProductBundleItemTypeListBuilder.php
View source
<?php

namespace Drupal\commerce_product_bundle;

use Drupal\Core\Config\Entity\ConfigEntityListBuilder;
use Drupal\Core\Entity\EntityInterface;

/**
 * Provides a listing of product bundle item type entities.
 */
class ProductBundleItemTypeListBuilder extends ConfigEntityListBuilder {

  /**
   * {@inheritdoc}
   */
  public function buildHeader() {
    $header['label'] = $this
      ->t('Product bundle item type');
    $header['id'] = $this
      ->t('Machine name');
    return $header + parent::buildHeader();
  }

  /**
   * {@inheritdoc}
   */
  public function buildRow(EntityInterface $entity) {
    $row['label'] = $entity
      ->label();
    $row['id'] = $entity
      ->id();

    // You probably want a few more properties here...
    return $row + parent::buildRow($entity);
  }

}

Classes

Namesort descending Description
ProductBundleItemTypeListBuilder Provides a listing of product bundle item type entities.