public function CheckListBuilder::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/
CheckListBuilder.php, line 86
Class
- CheckListBuilder
- Defines a class to build a listing of prod check processor entities.
Namespace
Drupal\prod_checkCode
public function buildHeader() {
$header = [
'label' => t('Label'),
] + parent::buildHeader();
return $header;
}