You are here

public function OpignoModuleListBuilder::buildHeader in Opigno module 8

Same name and namespace in other branches
  1. 3.x src/OpignoModuleListBuilder.php \Drupal\opigno_module\OpignoModuleListBuilder::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/OpignoModuleListBuilder.php, line 72

Class

OpignoModuleListBuilder
Defines a class to build a listing of Module entities.

Namespace

Drupal\opigno_module

Code

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