You are here

public function GauthListBuilder::buildHeader in Google Auth 8

Building the header and content lines for the snapshot list.

Calling the parent::buildHeader() adds a column for the possible actions and inserts the 'edit' and 'delete' links as defined for the entity type.

Overrides EntityListBuilder::buildHeader

File

src/Entity/Controller/GauthListBuilder.php, line 41

Class

GauthListBuilder
Provides a list controller for gauth entity.

Namespace

Drupal\gauth\Entity\Controller

Code

public function buildHeader() {
  $header = [
    'Id',
    'Name',
    'Services',
    'Is Authenticated',
  ];
  return $header + parent::buildHeader();
}