You are here

public function ProcessorListBuilder::buildHeader in Production check & Production monitor 8

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/ProcessorListBuilder.php, line 86

Class

ProcessorListBuilder
Defines a class to build a listing of prod check processor entities.

Namespace

Drupal\prod_check

Code

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