function VocabularyListBuilder::buildHeader
Builds the header row for the entity listing.
Return value
array A render array structure for the header.
Overrides DraggableListBuilderTrait::buildHeader
File
- 
              core/modules/ taxonomy/ src/ VocabularyListBuilder.php, line 141 
Class
- VocabularyListBuilder
- Defines a class to build a listing of taxonomy vocabulary entities.
Namespace
Drupal\taxonomyCode
public function buildHeader() {
  $header['label'] = t('Vocabulary name');
  $header['description'] = t('Description');
  if ($this->currentUser
    ->hasPermission('administer vocabularies') && !empty($this->weightKey)) {
    $header['weight'] = t('Weight');
  }
  return $header + parent::buildHeader();
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
