public function OrgListBuilder::buildHeader in RedHen CRM 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
- modules/
redhen_org/ src/ OrgListBuilder.php, line 17
Class
- OrgListBuilder
- Defines a class to build a listing of Org entities.
Namespace
Drupal\redhen_orgCode
public function buildHeader() {
$header['type'] = $this
->t('Type');
$header['name'] = $this
->t('Name');
$header['status'] = $this
->t('Status');
return $header + parent::buildHeader();
}