You are here

public function QuantityListBuilder::buildHeader in farmOS 2.x

File

modules/core/quantity/src/QuantityListBuilder.php, line 18

Class

QuantityListBuilder
Defines a class to build a listing of Quantity entities.

Namespace

Drupal\quantity

Code

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