You are here

public function TranscodeJobListBuilder::buildHeader in Video 8.2

Building the header and content lines for the transcode job list.

Calling the parent::buildHeader() adds a column for the possible actions and inserts the 'edit' and 'delete' links as defined for the entity type.

Overrides EntityListBuilder::buildHeader

File

modules/video_transcode/src/Controller/TranscodeJobListBuilder.php, line 74

Class

TranscodeJobListBuilder
Provides a list controller for video_transcode entity.

Namespace

Drupal\video_transcode\Controller

Code

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