public function WizardListBuilder::buildHeader in Flexiform 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
- contrib/
wizard/ src/ WizardListBuilder.php, line 16
Class
- WizardListBuilder
- List builder for flexiform_wizards.
Namespace
Drupal\flexiform_wizardCode
public function buildHeader() {
return [
'id' => $this
->t('Wizard'),
'path' => $this
->t('Path'),
] + parent::buildHeader();
}