public function KeywordListBuilder::buildHeader in Bibliography & Citation 8
Same name and namespace in other branches
- 2.0.x modules/bibcite_entity/src/KeywordListBuilder.php \Drupal\bibcite_entity\KeywordListBuilder::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
- modules/
bibcite_entity/ src/ KeywordListBuilder.php, line 19
Class
- KeywordListBuilder
- Defines a class to build a listing of Keyword entities.
Namespace
Drupal\bibcite_entityCode
public function buildHeader() {
$header['name'] = $this
->t('Name');
return $header + parent::buildHeader();
}