public function ScopeListBuilder::buildHeader in OAuth2 Server 8
Same name and namespace in other branches
- 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()
File
- src/
ScopeListBuilder.php, line 44
Class
- ScopeListBuilder
- Builds a listing of oauth2 server entities.
Namespace
Drupal\oauth2_serverCode
public function buildHeader() {
return [
'label' => $this
->t('Label'),
] + parent::buildHeader();
}