You are here

public function WorkspaceListBuilder::buildHeader in Opigno Moxtra 8

Same name and namespace in other branches
  1. 3.x src/WorkspaceListBuilder.php \Drupal\opigno_moxtra\WorkspaceListBuilder::buildHeader()

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

src/WorkspaceListBuilder.php, line 16

Class

WorkspaceListBuilder
Provides a list controller for opigno_moxtra_workspace entity.

Namespace

Drupal\opigno_moxtra

Code

public function buildHeader() {
  $header['id'] = $this
    ->t('ID');
  $header['name'] = $this
    ->t('Name');
  $header['binder_id'] = $this
    ->t('Binder ID');
  return $header + parent::buildHeader();
}