You are here

public function ScopeListBuilder::buildHeader in OAuth2 Server 8

Same name and namespace in other branches
  1. 2.0.x src/ScopeListBuilder.php \Drupal\oauth2_server\ScopeListBuilder::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()

1 call to ScopeListBuilder::buildHeader()
ScopeListBuilder::render in src/ScopeListBuilder.php

File

src/ScopeListBuilder.php, line 44

Class

ScopeListBuilder
Builds a listing of oauth2 server entities.

Namespace

Drupal\oauth2_server

Code

public function buildHeader() {
  return [
    'label' => $this
      ->t('Label'),
  ] + parent::buildHeader();
}