You are here

public function TranscodeJobListBuilder::render in Video 8.2

We override ::render() so that we can add our own content above the table. parent::render() is where EntityListBuilder creates the table using our buildHeader() and buildRow() implementations.

Overrides EntityListBuilder::render

File

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

Class

TranscodeJobListBuilder
Provides a list controller for video_transcode entity.

Namespace

Drupal\video_transcode\Controller

Code

public function render() {
  $build['table'] = parent::render();
  return $build;
}