You are here

public function FontDisplayListBuilder::buildHeader in @font-your-face 8.3

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/FontDisplayListBuilder.php, line 17

Class

FontDisplayListBuilder
Provides a listing of Font display entities.

Namespace

Drupal\fontyourface

Code

public function buildHeader() {
  $header['label'] = $this
    ->t('Font display');
  $header['id'] = $this
    ->t('Machine name');
  $header['name'] = $this
    ->t('Font');
  $header['theme'] = $this
    ->t('Theme');
  return $header + parent::buildHeader();
}