public function ConnectionRoleListBuilder::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_connection/ src/ ConnectionRoleListBuilder.php, line 34
Class
- ConnectionRoleListBuilder
- Provides a listing of Connection Role entities.
Namespace
Drupal\redhen_connectionCode
public function buildHeader() {
$header['label'] = $this
->t('Connection Role');
$header['id'] = $this
->t('Machine name');
return $header + parent::buildHeader();
}