You are here

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_connection

Code

public function buildHeader() {
  $header['label'] = $this
    ->t('Connection Role');
  $header['id'] = $this
    ->t('Machine name');
  return $header + parent::buildHeader();
}