You are here

public function LinkConfigurationStorageListBuilder::buildHeader in Menu Token 8

Same name and namespace in other branches
  1. 9.1.x src/LinkConfigurationStorageListBuilder.php \Drupal\menu_token\LinkConfigurationStorageListBuilder::buildHeader()

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/LinkConfigurationStorageListBuilder.php, line 16

Class

LinkConfigurationStorageListBuilder
Provides a listing of Link configuration storage entities.

Namespace

Drupal\menu_token

Code

public function buildHeader() {
  $header['label'] = $this
    ->t('Link configuration storage');
  $header['id'] = $this
    ->t('Machine name');
  $header['linkid'] = $this
    ->t('Link id');
  $header['configurationSerialized'] = $this
    ->t('Serialized configuration');
  return $header + parent::buildHeader();
}