You are here

public function LicenseListBuilder::buildHeader in Commerce License 8.2

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/LicenseListBuilder.php, line 54

Class

LicenseListBuilder
Defines a class to build a listing of License entities.

Namespace

Drupal\commerce_license

Code

public function buildHeader() {
  $header['id'] = $this
    ->t('License ID');
  $header['type'] = $this
    ->t('Type');
  return $header + parent::buildHeader();
}