public function LinkConfigurationStorageListBuilder::buildHeader in Menu Token 9.1.x
Same name and namespace in other branches
- 8 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_tokenCode
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();
}