You are here

public function BlocktabsListBuilder::buildHeader in Block Tabs 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/BlocktabsListBuilder.php, line 56

Class

BlocktabsListBuilder
Defines a class to build a listing of blocktabs entities.

Namespace

Drupal\blocktabs

Code

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