You are here

public function ProductBundleListBuilder::buildHeader in Commerce Product Bundle 8

Builds the header row for the entity listing.

Return value

array A render array structure of header strings.

Overrides EntityListBuilder::buildHeader

See also

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

File

src/ProductBundleListBuilder.php, line 22

Class

ProductBundleListBuilder
Defines a class to build a listing of product bundle entities.

Namespace

Drupal\commerce_product_bundle

Code

public function buildHeader() {
  $header['id'] = $this
    ->t('Product bundle ID');
  $header['name'] = $this
    ->t('Name');
  return $header + parent::buildHeader();
}