public function NoteListBuilder::buildHeader in Drupal PM (Project Management) 4.x
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/
pm_note/ src/ NoteListBuilder.php, line 19
Class
- NoteListBuilder
- Defines a class to build a listing of Note entities.
Namespace
Drupal\pm_noteCode
public function buildHeader() {
$header['id'] = $this
->t('Note ID');
$header['name'] = $this
->t('Name');
return $header + parent::buildHeader();
}