public function OrganizationListBuilder::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_organization/ src/ OrganizationListBuilder.php, line 19
Class
- OrganizationListBuilder
- Defines a class to build a listing of Organization entities.
Namespace
Drupal\pm_organizationCode
public function buildHeader() {
$header['id'] = $this
->t('Organization ID');
$header['name'] = $this
->t('Name');
return $header + parent::buildHeader();
}