You are here

public function LogListBuilder::buildHeader in Log entity 2.x

Same name and namespace in other branches
  1. 8 src/LogListBuilder.php \Drupal\log\LogListBuilder::buildHeader()

File

src/LogListBuilder.php, line 18

Class

LogListBuilder
Defines a class to build a listing of Log entities.

Namespace

Drupal\log

Code

public function buildHeader() {
  $header['id'] = $this
    ->t('Log ID');
  $header['label'] = $this
    ->t('Label');
  $header['type'] = $this
    ->t('Type');
  return $header + parent::buildHeader();
}