function VocabularyListBuilder::buildHeader
Same name in other branches
- 9 core/modules/taxonomy/src/VocabularyListBuilder.php \Drupal\taxonomy\VocabularyListBuilder::buildHeader()
- 8.9.x core/modules/taxonomy/src/VocabularyListBuilder.php \Drupal\taxonomy\VocabularyListBuilder::buildHeader()
- 10 core/modules/taxonomy/src/VocabularyListBuilder.php \Drupal\taxonomy\VocabularyListBuilder::buildHeader()
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'] = $this->t('Vocabulary name');
$header['description'] = $this->t('Description');
if ($this->currentUser
->hasPermission('administer vocabularies') && !empty($this->weightKey)) {
$header['weight'] = $this->t('Weight');
}
return $header + parent::buildHeader();
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.