You are here

public function PlanListBuilder::buildHeader in farmOS 2.x

File

modules/core/plan/src/PlanListBuilder.php, line 18

Class

PlanListBuilder
Defines a class to build a listing of plan entities.

Namespace

Drupal\plan

Code

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