You are here

public function BlockGroupContentListBuilder::buildHeader in Block Group 8

Builds the header row for the entity listing.

Return value

array A render array structure of header strings.

Overrides EntityListBuilder::buildHeader

See also

\Drupal\Core\Entity\EntityListBuilder::render()

File

src/BlockGroupContentListBuilder.php, line 16

Class

BlockGroupContentListBuilder
Provides a listing of Block group content entities.

Namespace

Drupal\blockgroup

Code

public function buildHeader() {
  $header['label'] = $this
    ->t('Block group content');
  $header['id'] = $this
    ->t('Machine name');
  return $header + parent::buildHeader();
}