You are here

public function AssetListBuilder::buildHeader in farmOS 2.x

File

modules/core/asset/src/AssetListBuilder.php, line 18

Class

AssetListBuilder
Defines a class to build a listing of asset entities.

Namespace

Drupal\asset

Code

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