public function KeywordListBuilder::buildHeader in Alinks 8
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/
KeywordListBuilder.php, line 20
Class
- KeywordListBuilder
- Defines a class to build a listing of Keyword entities.
Namespace
Drupal\alinksCode
public function buildHeader() {
$header['name'] = $this
->t('Name');
return $header + parent::buildHeader();
}